[jboss-svn-commits] JBL Code SVN: r19652 - 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
Sun Apr 20 10:16:42 EDT 2008


Author: gizil
Date: 2008-04-20 10:14:26 -0400 (Sun, 20 Apr 2008)
New Revision: 19652

Added:
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/IterationTest.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/SerializationTest.java
Modified:
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/GolfExample.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/java/examples/ZooExample.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/poker_hands.drl
Log:
tests for the serialization and the retraining of decision trees

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-20 14:11:35 UTC (rev 19651)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/GolfExample.java	2008-04-20 14:14:26 UTC (rev 19652)
@@ -26,10 +26,10 @@
 		/* 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", ",", -1);
 
 		/* parse the drl */
-		boolean parse_w_drools = true;
+		boolean parse_w_drools = false;
 		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 = true;
+		boolean load_to_drools = false;
 		if (load_to_drools) {
 			/* feeding the object to Drools working memory */
 			final StatefulSession session = ruleBase.newStatefulSession();

Added: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/IterationTest.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/IterationTest.java	                        (rev 0)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/IterationTest.java	2008-04-20 14:14:26 UTC (rev 19652)
@@ -0,0 +1,314 @@
+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.DecisionTree;
+import dt.builder.C45TreeBuilder;
+import dt.memory.Fact;
+import dt.memory.WorkingMemory;
+import dt.tools.DecisionTreeSerializer;
+import dt.tools.FileProcessor;
+import dt.tools.ObjectReader;
+import dt.tools.RulePrinter;
+
+public class IterationTest {
+	public static final void main(final String[] args) throws Exception {
+		int obj_type= 0;
+		WorkingMemory simple = new WorkingMemory();
+		
+		List<Fact> _facts = null;
+		String drlFile, inputFile, directory;
+		String build_file = "bocuks.build", tree_file = "bocuks.tree";
+		Object obj;
+		
+		//obj_type= 1;
+		switch (obj_type) {
+		case 1:
+			drlFile = new String("poker_hands_" + ".drl");
+			inputFile = new String("data/poker/poker-hand-training-true.data.txt");
+			directory = new String("data/poker/");	
+			obj = new Poker();
+			
+			break;
+		default:
+			drlFile = new String("golf_" + ".drl");
+			inputFile = new String("data/golf/golf.data.txt");
+			directory = new String("data/golf/");
+			obj = new Golf();
+		}
+		
+		int input_object = 1;	// process from file
+		//int input_object = 2;	// read from file
+		
+		List<Object> my_objects = null;
+		switch (input_object) {	
+		case 1:	// process from file
+			my_objects = FileProcessor.test_process(simple, obj, inputFile, ",");
+			_facts = simple.getFacts(obj.getClass());
+			break;
+		case 2:	// read from file
+			break;
+		}
+		
+		if (my_objects == null)	{
+			System.out.println("No objects found to process returning  ");
+			return;
+		}
+		
+		//int input_tree = 1;		// train a new tree with some part of the facts
+		int input_tree = 2;	// read from file
+		int[] test_size = {0, _facts.size()}, train_size = {0, _facts.size()}, retrain_size = {0, _facts.size()};
+		boolean retrain_tree = true, test_tree = true, print_tree = true, write_tree = false, test_rules = false, parse_w_drools = false;
+		switch (obj_type) {
+		case 1:
+			test_size[1] = 2;
+			train_size[1] = 2;
+			retrain_size [1] = 2;
+			break;
+		default:
+			test_size[1] = 14;
+			train_size[1] = 7;
+			retrain_size[0] = train_size[1];
+			retrain_size[1] = 14;
+		}
+		
+		C45TreeBuilder bocuk = null;
+		DecisionTree bocukTree = null;
+		switch (input_tree) {	
+		case 1:	// train a new tree
+			bocuk = builder_test(simple, obj);
+			bocukTree = train_test(bocuk, obj, _facts.subList(train_size[0], train_size[1]));
+			break;
+		case 2:	// read from file
+			bocuk = (C45TreeBuilder)read_test(directory, build_file);
+			bocukTree = (DecisionTree)read_test(directory, tree_file);
+			break;
+			
+		}
+		
+		
+		if (bocukTree == null)	{
+			System.out.println("No decision tree found to process returning  ");
+			return;
+		} else if (print_tree) {
+				System.out.println("My tree: "+ bocukTree);
+		}
+		
+		if (retrain_tree) {
+			// retrain a tree
+			bocukTree = retrain_test(bocuk, bocukTree, _facts.subList(retrain_size[0], retrain_size[1]));
+		}
+		
+		List<Integer> test_result = null;
+		if (test_tree)	{
+			System.out.println("TEST"+ input_tree);
+			//test_result = evaluation_test(bocuk, bocukTree, 0, bocuk.getNum_fact_trained());
+			//test_result = evaluation_test(bocuk, bocukTree, (int)(bocuk.getNum_fact_trained()*3/5), (int)(bocuk.getNum_fact_trained()*4/5));
+			
+			test_result = evaluation_test(bocuk, bocukTree, _facts.subList(test_size[0], test_size[1]));
+			System.out.print("Test results: \tMistakes "+ test_result.get(0));
+			System.out.print("\tCorrects "+ test_result.get(1));
+			System.out.println("\t Unknown "+ test_result.get(2) +" OF "+ bocuk.getNum_fact_trained() + " facts" );
+			if (print_tree)
+				System.out.println("My tree: "+ bocukTree);
+		}
+		
+		if (write_tree) {
+			write_test(bocuk, directory, build_file);
+			write_test(bocukTree, directory, tree_file);
+		}
+
+
+		/* create the drl */
+		if (test_rules) { 
+			int max_rules = -1; // no limit print all
+			rules_test(bocuk, bocukTree, drlFile, max_rules); 
+		}
+		
+		
+		if (parse_w_drools) {
+			drools(drlFile, my_objects);
+		}
+
+	}
+	
+	public static C45TreeBuilder builder_test(WorkingMemory simple, Object emptyObject) {
+
+		long st = System.currentTimeMillis();
+		String target_attr = ObjectReader.getTargetAnnotation(emptyObject.getClass());
+		
+		List<String> workingAttributes= ObjectReader.getWorkingAttributes(emptyObject.getClass());
+		
+		C45TreeBuilder bocuk = new C45TreeBuilder();
+		bocuk.setTarget(target_attr);
+		for (String attr : workingAttributes) {
+			bocuk.addAttribute(attr);
+			bocuk.addDomain(simple.getDomain(attr));
+		}
+		//bocuk.init(target_attr, workingAttributes);
+		
+		long build_time = System.currentTimeMillis();
+		System.out.println("\nTime to builder " + (build_time-st));
+		
+		return bocuk;	
+	}
+	
+	public static DecisionTree train_test(C45TreeBuilder builder, Object emptyObject, List<Fact> facts) {
+								 // String drlfile, , int max_rules
+		long st = System.currentTimeMillis();
+		DecisionTree bocuksTree = builder.build(emptyObject.getClass(), facts);
+		
+		long train_time = System.currentTimeMillis();
+		System.out.println("\nTime to train_decision_tree " + (train_time-st));
+	
+		return bocuksTree;
+	}
+	
+	public static DecisionTree retrain_test(C45TreeBuilder builder, DecisionTree dt, List<Fact> facts) {
+		 // String drlfile, , int max_rules
+		long st = System.currentTimeMillis();
+		DecisionTree bocuksTree = builder.re_build(dt, facts);
+
+		long retrain_time = System.currentTimeMillis();
+		System.out.println("\nTime to train_decision_tree " + (retrain_time-st));
+
+		return bocuksTree;
+	}
+	
+	public static void write_test(Object tree, String outputdirectory, String file) {
+		 // String drlfile, , int max_rules
+
+		long st = System.currentTimeMillis();
+
+		DecisionTreeSerializer.write(tree, outputdirectory+file);
+		
+		long write_time = System.currentTimeMillis();
+		System.out.println("Time to write_decision_tree " + (write_time-st) + "\n" );
+	
+		
+	}
+	
+	public static Object read_test(String directory, String file) {
+		long st = System.currentTimeMillis();
+		try {
+			Object obj = DecisionTreeSerializer.read(directory+file);
+			
+			long read_time = System.currentTimeMillis();
+			System.out.println("Time to read_" + file+" "+(read_time-st) + "\n" );
+			
+			return obj;
+		} catch (Exception e) {
+			// TODO Auto-generated catch block
+			e.printStackTrace();
+		}
+		
+		return null;
+	}
+	
+
+	public static List<Integer> evaluation_test(C45TreeBuilder builder, DecisionTree tree, List<Fact> facts) {
+		long st = System.currentTimeMillis();
+		
+		List<Integer> evaluation = builder.test(tree, facts); //builder.getFacts().subList(first_f, last_f));
+		long test_time = System.currentTimeMillis();
+		System.out.println("Time to test_decision_tree " + (test_time-st) + "\n" );
+		
+		return evaluation;
+
+	}
+	
+	
+	public static void rules_test (C45TreeBuilder builder, DecisionTree tree, String drlfile, int max_rules) {
+		long st = System.currentTimeMillis();
+
+		RulePrinter my_printer  = new RulePrinter(builder.getNum_fact_trained());
+		if (max_rules >0)
+			my_printer.setMax_num_rules(max_rules);
+		boolean sort_via_rank = true;
+		boolean print = true;
+		my_printer.printer(tree, sort_via_rank, print);
+		my_printer.write2file("examples", "src/rules/examples/" + drlfile);
+		
+		long print_time = System.currentTimeMillis();
+		System.out.println("Time to print_rules " + (print_time-st) + "\n" );
+	}
+	public static void drools(String drlFile, List<Object> my_objects) throws Exception{
+		/* parse the drl */
+		
+		
+		//read in the source 
+		// TODO give an exception of the file does not exist
+		final Reader source = new InputStreamReader(Golf.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/java/examples/PokerExample.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/PokerExample.java	2008-04-20 14:11:35 UTC (rev 19651)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/PokerExample.java	2008-04-20 14:14:26 UTC (rev 19652)
@@ -25,13 +25,39 @@
 		String drlFile = new String("poker_hands" + ".drl");
 		WorkingMemory simple = new WorkingMemory();
 		/* create the drl */
-		Object nurse = new Poker();
+		Object poker = new Poker();
 		
-		List<Object> my_objects = FileProcessor.processFileExmC45(simple,
-				nurse, drlFile, "data/poker/poker-hand-training-true.data.txt", ",");
-
+		boolean create_drl = true;
+		List<Object> my_objects = null;
+		if (create_drl) {
+			my_objects = FileProcessor.processFileExmC45(simple,
+				poker, drlFile, "data/poker/poker-hand-training-true.data.txt", ",", -1);
+		}
+		// 500  +
+		// 1000 +
+		// 2500 +
+		// 3000 +
+		
+		// 3250 +
+		// 3300 +
+		// 3310 +
+		
+		// 3315 +
+		// 3316 +
+		// 3317 -
+		// 3320 -
+		// 3322 -
+		// 3323 -
+		// 3324 -
+		// 3325 -
+		// 3400 -
+		// 3500 - 
+		
+		// 3750 -
+		// 4000 - 
+		// 5000 -
 		/* parse the drl */
-		boolean parse_w_drools = true;
+		boolean parse_w_drools = false;
 		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-20 14:11:35 UTC (rev 19651)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/RestaurantExample.java	2008-04-20 14:14:26 UTC (rev 19652)
@@ -94,7 +94,7 @@
 	}
 
 	public static List<Object> produceRestaurants(WorkingMemory wm, String file) {
-
+		boolean only_discrete = true;
 		Restaurant arest = new Restaurant(true, false, false, true, "Full", 1,
 				false, false, "Thai", "30-60", false);
 		Class<?> k = arest.getClass();
@@ -124,7 +124,7 @@
 
 		for (Object r : facts) {
 			try {
-				wm.insert(r);
+				wm.insert(r, only_discrete);
 
 			} catch (Exception e) {
 				System.out.println("Inserting element " + r + " and " + e);
@@ -139,11 +139,12 @@
 		dt = System.currentTimeMillis() - dt;
 		System.out.println("Time" + dt + "\n" + bocuksTree);
 
-		RulePrinter my_printer = new RulePrinter(bocuk.getNum_fact_processed());
+		RulePrinter my_printer = new RulePrinter(bocuk.getNum_fact_trained());
 		boolean sort_via_rank = true;
-		my_printer
-				.printer(bocuksTree, "examples", "src/rules/examples/" + file, sort_via_rank);
-
+		boolean print = true;
+		my_printer.printer(bocuksTree, sort_via_rank, print);
+		my_printer.write2file("examples", "src/rules/examples/" + file);
+		
 		return facts;
 	}
 }

Added: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/SerializationTest.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/SerializationTest.java	                        (rev 0)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/SerializationTest.java	2008-04-20 14:14:26 UTC (rev 19652)
@@ -0,0 +1,277 @@
+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.DecisionTree;
+import dt.builder.C45TreeBuilder;
+import dt.memory.WorkingMemory;
+import dt.tools.DecisionTreeSerializer;
+import dt.tools.FileProcessor;
+import dt.tools.ObjectReader;
+import dt.tools.RulePrinter;
+
+public class SerializationTest {
+	public static final void main(final String[] args) throws Exception {
+		
+		WorkingMemory simple = new WorkingMemory();
+		String drlFile, inputFile, directory;
+		Object obj;
+		int test_size = 0;
+		
+		int obj_type= 0;
+		switch (obj_type) {
+		case 0:
+			drlFile = new String("poker_hands" + ".drl");
+			inputFile = new String("data/poker/poker-hand-training-true.data.txt");
+			directory = new String("data/poker/");
+			
+			obj = new Poker();
+			test_size = 2;
+			break;
+		default:
+			drlFile = new String("golf" + ".drl");
+			inputFile = new String("data/golf/golf.data.txt");
+			directory = new String("data/golf/");
+			obj = new Golf();
+			test_size = 14;
+			
+		}
+
+		int input_object = 1;	// process from file
+		//int input_object = 2;	// read from file
+		
+		//int input_tree = 1;	// train a new tree
+		int input_tree = 2;		// read from file
+		//int input_tree = 3;	// retrain a tree
+		
+		boolean test_tree = true;
+		boolean test_rules = false;
+		boolean parse_w_drools = false;
+		
+		List<Object> my_objects = null;
+		switch (input_object) {	
+		case 1:
+			my_objects = FileProcessor.test_process(simple, obj, inputFile, ",");
+			break;
+		case 2:
+			break;
+		}
+		
+		if (my_objects == null)	{
+			System.out.println("No objects found to process returning  ");
+			return;
+		}
+		
+		C45TreeBuilder bocuk = null;
+		DecisionTree bocukTree = null;
+		switch (input_tree) {	
+		case 1:
+			bocuk = builder_test(simple, obj);
+			bocukTree = train_test(bocuk, obj);
+			write_test(bocuk, directory, "bocuks.build");
+			write_test(bocukTree, directory, "bocuks.tree");
+			break;
+		case 2:
+			bocuk = (C45TreeBuilder)read_test(directory, "bocuks.build");
+			bocukTree = (DecisionTree)read_test(directory, "bocuks.tree");
+			break;
+		}
+		
+		if (bocukTree == null)	{
+			System.out.println("No decision tree found to process returning  ");
+			return;
+		}
+		
+		List<Integer> test_result = null;
+		if (test_tree)	{
+			System.out.println("TEST"+ input_tree);
+			//test_result = evaluation_test(bocuk, bocukTree, 0, bocuk.getNum_fact_trained());
+			//test_result = evaluation_test(bocuk, bocukTree, (int)(bocuk.getNum_fact_trained()*3/5), (int)(bocuk.getNum_fact_trained()*4/5));
+			
+			test_result = evaluation_test(bocuk, bocukTree, 0, test_size);
+			System.out.print("Test results: \tMistakes "+ test_result.get(0));
+			System.out.print("\tCorrects "+ test_result.get(1));
+			System.out.println("\t Unknown "+ test_result.get(2) +" OF "+ bocuk.getNum_fact_trained() + " facts" );
+		}
+
+
+		/* create the drl */
+		if (test_rules) { 
+			int max_rules = -1; // no limit print all
+			rules_test(bocuk, bocukTree, drlFile, max_rules); 
+		}
+		
+		
+		if (parse_w_drools) {
+			drools(drlFile, my_objects);
+		}
+
+	}
+	
+	public static C45TreeBuilder builder_test(WorkingMemory simple, Object emptyObject) {
+
+		long st = System.currentTimeMillis();
+		String target_attr = ObjectReader.getTargetAnnotation(emptyObject.getClass());
+		
+		List<String> workingAttributes= ObjectReader.getWorkingAttributes(emptyObject.getClass());
+		
+		C45TreeBuilder bocuk = new C45TreeBuilder(simple);
+		bocuk.init(target_attr, workingAttributes);
+		
+		long build_time = System.currentTimeMillis();
+		System.out.println("\nTime to builder " + (build_time-st));
+		
+		return bocuk;
+
+		
+	}
+	
+	public static DecisionTree train_test(C45TreeBuilder builder, Object emptyObject) {
+								 // String drlfile, , int max_rules
+		long st = System.currentTimeMillis();
+		DecisionTree bocuksTree = builder.build(emptyObject.getClass());
+		
+		long train_time = System.currentTimeMillis();
+		
+		System.out.println("\nTime to train_decision_tree " + (train_time-st));
+	
+		return bocuksTree;
+	}
+	
+	public static void write_test(Object tree, String outputdirectory, String file) {
+		 // String drlfile, , int max_rules
+
+		long st = System.currentTimeMillis();
+
+		DecisionTreeSerializer.write(tree, outputdirectory+file);
+		
+		long write_time = System.currentTimeMillis();
+		System.out.println("Time to write_decision_tree " + (write_time-st) + "\n" );
+	
+		
+	}
+	
+	public static Object read_test(String directory, String file) {
+		long st = System.currentTimeMillis();
+		try {
+			Object obj = DecisionTreeSerializer.read(directory+file);
+			
+			long read_time = System.currentTimeMillis();
+			System.out.println("Time to read_" + file+" "+(read_time-st) + "\n" );
+			
+			return obj;
+		} catch (Exception e) {
+			// TODO Auto-generated catch block
+			e.printStackTrace();
+		}
+		
+		return null;
+	}
+	
+
+	public static List<Integer> evaluation_test(C45TreeBuilder builder, DecisionTree tree, int first_f, int last_f) {
+		long st = System.currentTimeMillis();
+		
+		List<Integer> evaluation = builder.test(tree, builder.getFacts().subList(first_f, last_f));
+		long test_time = System.currentTimeMillis();
+		System.out.println("Time to test_decision_tree " + (test_time-st) + "\n" );
+		
+		return evaluation;
+
+	}
+	
+	
+	public static void rules_test (C45TreeBuilder builder, DecisionTree tree, String drlfile, int max_rules) {
+		long st = System.currentTimeMillis();
+
+		RulePrinter my_printer  = new RulePrinter(builder.getNum_fact_trained());
+		if (max_rules >0)
+			my_printer.setMax_num_rules(max_rules);
+		boolean sort_via_rank = true;
+		boolean print = true;
+		my_printer.printer(tree, sort_via_rank, print);
+		my_printer.write2file("examples", "src/rules/examples/" + drlfile);
+		
+		long print_time = System.currentTimeMillis();
+		System.out.println("Time to print_rules " + (print_time-st) + "\n" );
+	}
+	public static void drools(String drlFile, List<Object> my_objects) throws Exception{
+		/* parse the drl */
+		
+		
+		//read in the source 
+		// TODO give an exception of the file does not exist
+		final Reader source = new InputStreamReader(Golf.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/java/examples/ZooExample.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/ZooExample.java	2008-04-20 14:11:35 UTC (rev 19651)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/ZooExample.java	2008-04-20 14:14:26 UTC (rev 19652)
@@ -25,7 +25,7 @@
 		/* create the drl */
 		Object animal = new Zoo();
 		
-		List<Object> my_objects = FileProcessor.processFileExmC45(simple,animal, drlFile, "data/zoo/zoo.data", ",");
+		List<Object> my_objects = FileProcessor.processFileExmC45(simple,animal, drlFile, "data/zoo/zoo.data", ",", -1);
 
 		/* parse the drl */
 		boolean parse_w_drools = false;

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/poker_hands.drl
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/poker_hands.drl	2008-04-20 14:11:35 UTC (rev 19651)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/poker_hands.drl	2008-04-20 14:14:26 UTC (rev 19652)
@@ -1,73336 +1,131464 @@
 package examples;
 
-rule "#3051 poker_hand = 1 classifying 18.0 num of facts with rank:7.197121151539384E-4" 
+rule "#31876 poker_hand = 0 classifying 16.0 num of facts with rank:6.397441023590564E-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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#181 poker_hand = 1 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 13, 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" 
+rule "#19094 poker_hand = 1 classifying 13.0 num of facts with rank:5.197920831667333E-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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 7, 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" 
+rule "#4422 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7454 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22539 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26090 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30440 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36476 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5543 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12097 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 12, 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" 
+rule "#13180 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25509 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27463 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 13, 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" 
+rule "#36148 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39181 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43833 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 12, 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" 
+rule "#12423 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18081 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26854 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 4, 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" 
+rule "#28895 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 == 3, c3 <= 13, c5 <= 12.5, c1 <= 12.0, c2 > 2.0, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 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" 
+rule "#32564 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 1, 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" 
+rule "#40168 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 == 4, c1 <= 12.5, c2 > 1.0, c4 <= 12.0, c3 > 1.0, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4907 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7061 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7390 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15279 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18055 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 3, 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" 
+rule "#21080 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37157 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 9, 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" 
+rule "#44727 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 == 3, c2 <= 13, c4 > 1.0, c3 <= 9.5, c1 > 1.0, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 9, 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" 
+rule "#77 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-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)
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#182 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4921 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 10, 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" 
+rule "#15695 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16735 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 11, 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" 
+rule "#18788 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26840 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38627 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40855 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 12, 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" 
+rule "#423 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 12, 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" 
+rule "#2470 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 9, 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" 
+rule "#5238 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 6, 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" 
+rule "#16820 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 4, s2 == 1, 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" 
+rule "#18183 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19824 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 12, 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" 
+rule "#23627 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26274 poker_hand = 3 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#27856 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 5, 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" 
+rule "#28211 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 12, 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" 
+rule "#30620 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 6, s2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41627 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 1, 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" 
+rule "#3650 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 == 1, c5 <= 13, c2 <= 13, c4 <= 10.5, c1 <= 11.5, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3651 poker_hand = 3 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4892 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 1, s3 == 2, 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" 
+rule "#4999 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 4, 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" 
+rule "#5442 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 10, s4 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11325 poker_hand = 3 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16063 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 3, s4 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16821 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 3, 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" 
+rule "#23880 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26981 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27870 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29931 poker_hand = 3 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33268 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 7, s1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33561 poker_hand = 3 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#34974 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38606 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41289 poker_hand = 3 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#43704 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#129 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 4, 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" 
+rule "#3665 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4377 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 8, 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" 
+rule "#5441 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 10, s4 == 2, 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" 
+rule "#5646 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 12, s3 == 3, 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" 
+rule "#7492 poker_hand = 2 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 1, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8133 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 13, s4 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8428 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9266 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 11, s4 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9802 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 11, s2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10227 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 4, c2 == 6, 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" 
+rule "#10970 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 1, s5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17424 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 5, s3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19244 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 13, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19686 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 7, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21465 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 8, s5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22399 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24006 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24370 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 13, 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" 
+rule "#25856 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26272 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 7, s1 == 2, 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" 
+rule "#30635 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 6, s2 == 1, 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" 
+rule "#32949 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 8, c1 == 13, 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" 
+rule "#33616 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 13, 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" 
+rule "#33645 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 == 2, c1 <= 13, c2 <= 12.0, c3 > 1.0, c4 <= 11.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 11, s1 == 1, 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" 
+rule "#33975 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37341 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 9, 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" 
+rule "#38206 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40726 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 13, 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" 
+rule "#42496 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 10, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43455 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 12, 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" 
+rule "#43550 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 2, c1 == 4, 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" 
+rule "#43800 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 8, 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" 
+rule "#44159 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 == 3, c5 > 2.0, c3 > 1.5, c1 > 2.5, c2 <= 9.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#0 poker_hand = 3 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#305 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 5, c1 == 5, 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" 
+rule "#667 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 == 2, c5 <= 11.5, c1 > 1.0, c2 > 3.0, c3 > 2.0, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 2, s2 == 1, 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" 
+rule "#769 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 == 2, c2 <= 13, c1 > 2.0, c3 <= 12.5, c4 <= 7.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 9, c2 == 13, 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" 
+rule "#773 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 9, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#781 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 9, c2 == 1, 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" 
+rule "#953 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1045 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 8, c5 == 3, 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" 
+rule "#1057 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 == 1, c1 > 3.5, c4 > 1.5, c5 > 1.0, c2 <= 11.5, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 7, c1 == 4, 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" 
+rule "#1131 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)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 6, 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" 
+rule "#1229 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 9, c5 == 11, 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" 
+rule "#1274 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 7, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1616 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 13, 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" 
+rule "#1681 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 3, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1957 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 4, s2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2011 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 12, c1 == 12, 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" 
+rule "#2879 poker_hand = 0 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 <= 12.5, c5 <= 12.5, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3666 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 9, 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" 
+rule "#4342 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 == 4, c1 > 2.5, c4 > 1.5, c3 <= 11.0, c5 > 1.0, c2 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 6, 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(c4 == 12, c5 == 4, c1 == 12, s3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5817 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6371 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6566 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 9, c2 == 4, 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" 
+rule "#7128 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 == 3, c2 > 1.0, c1 > 1.0, c5 <= 13, c3 > 1.0, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 9, 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" 
+rule "#7415 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 6, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8136 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 12, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8199 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 8, s5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8200 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 8, s5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8342 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9195 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 8, 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" 
+rule "#9229 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 == 1, c2 <= 12.0, c4 <= 10.0, c1 > 1.0, c5 > 4.0, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 13, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9506 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 1, 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" 
+rule "#9622 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 == 1, c1 > 1.5, c2 > 2.0, c3 > 2.0, c4 <= 12.5, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 8, c1 == 11, 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" 
+rule "#9800 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 == 1, c1 > 1.0, c2 > 1.0, c3 <= 12.5, c4 > 1.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 12, s5 == 1, 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" 
+rule "#10725 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 11, c1 == 1, 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" 
+rule "#10774 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 10, 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" 
+rule "#10846 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 == 4, c5 <= 12.5, c3 <= 12.0, c2 <= 11.5, c1 <= 10.5, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#22 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+rule "#11687 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 == 1, c4 <= 8.0, c5 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 6, 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" 
+rule "#11830 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 == 3, c2 > 1.0, c3 > 1.5, c1 <= 12.0, c4 > 2.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11993 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 4, c2 == 4, 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" 
+rule "#12323 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12816 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 11, c1 == 12, 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" 
+rule "#13265 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 4, 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" 
+rule "#13364 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 6, 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" 
+rule "#13549 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 <= 12.5, c4 > 3.0, c2 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 6, c1 == 9, 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" 
+rule "#13610 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 1, s4 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1705 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+rule "#13639 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 == 1, c4 > 2.5, c5 > 4.0, c1 > 1.0, c2 <= 13, c3 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 12, s5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13641 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 12, s5 == 2, 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" 
+rule "#13807 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, c2 <= 13, c3 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14021 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 8, s1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14022 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 8, s1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14473 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15894 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16062 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 3, s4 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16064 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 3, s4 == 2, 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" 
+rule "#16442 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 == 4, c3 > 4.5, c2 > 1.0, c1 > 1.5, c4 <= 12.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 12, s1 == 4, 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" 
+rule "#16457 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 12, s1 == 1, 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" 
+rule "#17427 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17589 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 10, s2 == 3, 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" 
+rule "#18219 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 6, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18262 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 2, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18306 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18362 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 10, 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" 
+rule "#18632 poker_hand = 0 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18699 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18729 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19014 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 12, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19101 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 6, c3 == 7, 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" 
+rule "#19180 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 == 2, c3 > 2.0, c1 > 1.5, c2 > 2.0, c4 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19233 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 13, c3 == 13, 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" 
+rule "#19436 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 3, c5 == 12, 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" 
+rule "#19748 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 == 3, c3 > 1.0, c1 > 2.0, c2 > 1.5, c4 <= 13, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 3, 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" 
+rule "#20131 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 == 4, c1 <= 12.5, c5 > 2.5, c2 > 1.5, c3 > 2.5, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 9, c3 == 13, 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" 
+rule "#20170 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 == 4, c3 > 1.0, c4 <= 13, c5 <= 12.0, c1 <= 11.0, c2 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 13, 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" 
+rule "#20270 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 == 4, c2 <= 11.0, c3 > 1.0, c1 <= 12.0, c4 > 1.0, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 2, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20363 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20411 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 8, c3 == 11, 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" 
+rule "#20530 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 2, c5 == 6, 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" 
+rule "#20573 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 13, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20698 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 6, c5 == 3, 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" 
+rule "#21029 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 2, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21048 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21081 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21130 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 10, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21410 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 11, s4 == 3, 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" 
+rule "#21412 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 11, s4 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21436 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 10, c2 == 2, 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" 
+rule "#22086 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 == 1, c2 > 7.0, c4 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 4, c1 == 11, 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" 
+rule "#22099 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22213 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22540 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 9, 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" 
+rule "#22621 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 == 3, c5 > 1.0, c2 > 2.0, c4 > 8.0, c1 > 2.5, c3 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22917 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 4, c3 == 2, 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" 
+rule "#23139 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 == 1, c3 <= 12.0, c1 <= 13, c2 > 3.5, c4 > 3.0, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 10, 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" 
+rule "#23257 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 == 1, c1 > 1.0, c3 <= 7.5, c5 > 4.0, c2 <= 10.5, c4 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 3, 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" 
+rule "#23310 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, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 1, 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" 
+rule "#23844 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23958 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 5, c2 == 11, 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" 
+rule "#24015 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 == 3, c3 > 1.5, c1 > 2.0, c2 > 1.0, c4 <= 11.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 2, c2 == 5, 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" 
+rule "#24470 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 8, c2 == 2, 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" 
+rule "#24777 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 7, c1 == 12, 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" 
+rule "#25129 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25168 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 1, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25544 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25872 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 6, c1 == 2, 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" 
+rule "#25897 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 == 1, c4 > 3.5, c2 > 4.0, c3 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 5, c3 == 2, 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" 
+rule "#26398 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 == 4, c5 > 1.0, c2 > 1.0, c1 <= 12.5, c3 <= 13, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26549 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 3, 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" 
+rule "#26680 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 == 1, c2 <= 10.5, c3 > 1.0, c4 <= 11.0, c1 > 2.0, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 9, 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" 
+rule "#26821 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 == 2, c1 <= 9.5, c2 > 1.0, c3 > 3.0, c4 <= 13, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 7, c1 == 7, 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" 
+rule "#26926 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 13, c2 == 5, 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" 
+rule "#27009 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 == 2, c1 > 1.0, c3 > 1.0, c5 > 1.5, c2 <= 11.0, c4 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 8, s3 == 2, 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" 
+rule "#27216 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 9, 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" 
+rule "#27377 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 == 4, c1 > 1.0, c3 > 3.0, c2 <= 13, c4 > 1.5, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 12, 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" 
+rule "#27872 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 == 1, c4 <= 11.5, c2 <= 10.0, c3 > 1.5, c1 <= 11.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 12, 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" 
+rule "#27986 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 == 3, c4 > 1.0, c2 <= 13, c1 > 3.5, c3 > 3.0, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 11, 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" 
+rule "#28225 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 10, s1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28431 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 10, 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" 
+rule "#28783 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 == 4, c4 > 1.5, c1 > 1.0, c2 > 2.0, c3 > 2.5, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 12, c3 == 10, 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" 
+rule "#28869 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, c1 > 3.5, c2 > 1.5, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 1, 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" 
+rule "#29223 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29524 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30129 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 10, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30467 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31064 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 12, s3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31108 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 8, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31109 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 8, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31155 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31481 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32228 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32311 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 1, 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" 
+rule "#32399 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32454 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32727 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 1, 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" 
+rule "#32833 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 == 4, c5 <= 13, c2 <= 11.5, c1 <= 13, c3 > 2.0, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 1, s3 == 3, 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" 
+rule "#33346 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 13, 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" 
+rule "#33543 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 6, c1 == 5, 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" 
+rule "#33582 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 == 3, c4 > 1.0, c1 > 1.5, c5 <= 12.0, c2 > 2.5, c3 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 3, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34671 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 9, c2 == 12, 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" 
+rule "#34838 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 13, c2 == 10, 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" 
+rule "#34887 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 10, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34972 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 2, 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" 
+rule "#34980 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 5, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35258 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35317 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 1, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35404 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 13, 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" 
+rule "#35734 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 11, c1 == 7, 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" 
+rule "#35832 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 5, c5 == 11, 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" 
+rule "#36119 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 5, s3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36236 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 12, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36553 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37623 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38458 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 11, s3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38529 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 7, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38723 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39251 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 10, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39342 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39411 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 2, c5 == 3, 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" 
+rule "#39694 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 1, c5 == 10, 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" 
+rule "#39848 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, c1 <= 13, c3 <= 11.0, c4 <= 9.5, c2 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40371 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 8, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40482 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 2, c1 == 7, 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" 
+rule "#40869 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 == 2, c1 > 1.0, c4 > 2.0, c5 <= 9.0, c2 <= 12.5, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 11, s3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41277 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 3, c1 == 12, 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" 
+rule "#41327 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 > 1.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 1, 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" 
+rule "#41511 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 == 4, c4 > 2.0, c1 <= 12.0, c3 > 2.0, c5 > 1.0, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 4, 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" 
+rule "#41763 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 == 4, c3 > 1.5, c1 <= 11.0, c5 <= 8.5, c2 > 2.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 2, 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" 
+rule "#41898 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 == 4, c1 <= 11.0, c2 <= 12.5, c3 > 1.0, c4 > 2.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 6, 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" 
+rule "#42100 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 3, c5 == 8, 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" 
+rule "#42110 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 2, c3 == 11, 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" 
+rule "#42838 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 == 2, c1 > 2.0, c2 > 2.5, c3 <= 13, c4 > 1.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 8, c5 == 12, 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" 
+rule "#43138 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 == 3, c2 > 1.0, c4 > 1.0, c5 > 1.0, c1 <= 11.5, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43322 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 7, 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" 
+rule "#43584 poker_hand = 2 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 1, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#5522 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+rule "#44162 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 8, c3 == 13, 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" 
+rule "#44256 poker_hand = 0 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, c4 > 1.0, c5 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 8, 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" 
+rule "#44438 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 8, c5 == 2, 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" 
+rule "#45084 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-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)
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 3, c3 == 11, 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" 
+rule "#23 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 == 3, c5 > 3.0, c3 > 1.0, c1 > 2.0, c4 <= 12, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 11, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6192 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+rule "#209 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 == 2, c1 > 2.0, c4 > 3.5, c5 <= 10.0, c2 > 1.5, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 12, 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" 
+rule "#254 poker_hand = 0 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, c3 > 1.5, c4 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 8, c1 == 5, 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" 
+rule "#391 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 == 3, c5 > 1.0, c1 > 2.0, c2 > 1.0, c3 > 1.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 1, c1 == 7, 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" 
+rule "#393 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 1, c1 == 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" 
+rule "#467 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 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 7, 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" 
+rule "#468 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, c4 > 2.5, c1 <= 12.5, c2 > 1.0, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 6, 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" 
+rule "#661 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 2, s2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7679 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+rule "#686 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 == 4, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 > 2.0, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 13, c1 == 8, 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" 
+rule "#740 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 == 3, c1 > 2.0, c2 <= 13, c3 > 2.0, c4 <= 13, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#743 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#850 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#876 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#907 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 2, c2 == 2, 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" 
+rule "#915 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 == 3, c4 > 2.5, c5 <= 11.5, c1 > 1.5, c2 <= 12.5, c3 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 7, 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" 
+rule "#1013 poker_hand = 1 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, c3 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 10, c1 == 9, 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" 
+rule "#1099 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, c1 > 1.0, c3 <= 12.0, c4 > 1.0, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 13, 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" 
+rule "#1228 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 == 4, c1 > 1.5, c2 <= 12.5, c3 <= 13, c4 > 1.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 9, c5 == 12, 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" 
+rule "#1273 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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 7, c2 == 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" 
+rule "#1289 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 == 3, c2 <= 13, c5 > 3.5, c1 > 1.5, c3 <= 13, c4 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 6, c2 == 2, 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" 
+rule "#1372 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 == 1, c2 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 7, 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" 
+rule "#1387 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 4, 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" 
+rule "#1404 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 == 3, c5 > 1.5, c3 <= 13, c1 <= 10.0, c2 <= 10.5, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 1, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1435 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 7, 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" 
+rule "#1695 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 == 3, c4 <= 12.0, c3 > 1.5, c5 > 3.0, c1 > 2.0, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1870 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1888 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2060 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 13, 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" 
+rule "#2115 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 == 4, c3 > 1.0, c5 <= 13, c2 > 1.5, c1 > 3.0, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2224 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 11, 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" 
+rule "#2252 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 == 3, c4 > 2.0, c5 > 2.5, c1 > 1.5, c2 > 2.0, c3 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2397 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 12, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2446 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2506 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 7, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2511 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2512 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2518 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2612 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2702 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 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" 
+rule "#2706 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 == 3, c2 <= 11.5, c1 > 1.0, c3 <= 13, c4 <= 13, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 7, 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" 
+rule "#2728 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 <= 11.5, c3 <= 13, c1 > 1.0, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 10, c1 == 10, 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" 
+rule "#2729 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, c3 <= 10.5, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 10, c1 == 9, 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" 
+rule "#2834 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 == 1, c5 > 3.0, c3 <= 12.5, c1 > 2.5, c2 <= 12.0, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3091 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 5, c1 == 1, 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" 
+rule "#3135 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, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 3, c1 == 7, 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" 
+rule "#3176 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 13, c1 == 5, 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" 
+rule "#3238 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 == 4, c3 <= 11.5, c2 <= 11.0, c1 > 4.5, c4 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 10, c1 == 6, 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" 
+rule "#3363 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, c3 > 1.5, c2 > 1.5, c1 <= 10.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 3, c2 == 8, 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" 
+rule "#3398 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 1, c1 == 11, 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" 
+rule "#3408 poker_hand = 3 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3417 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 13, c1 == 5, 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" 
+rule "#3610 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 == 1, c1 > 3.5, c3 > 6.0, c2 > 3.0, c5 > 1.5, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3696 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 7, c2 == 9, 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" 
+rule "#3707 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 == 4, c3 <= 9.0, c4 > 1.0, c1 <= 12.0, c2 > 1.5, c5 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 6, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3728 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 5, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3768 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3772 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 1, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4002 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 8, 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" 
+rule "#4093 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, c1 <= 11.0, c4 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 12, c3 == 5, 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" 
+rule "#4343 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 == 1, c1 <= 12.5, c5 > 2.5, c2 > 2.5, c3 > 2.5, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 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" 
+rule "#4394 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, c3 > 1.5, c4 <= 11.5, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 3, 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" 
+rule "#4561 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 == 3, c4 > 3.5, c1 > 1.5, c5 > 3.0, c2 > 2.5, c3 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 5, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4722 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 9, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4744 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4797 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5097 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5143 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5149 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 11, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5256 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5263 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5439 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 10, s4 == 4, 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" 
+rule "#5479 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 == 2, c2 <= 12.5, c3 > 2.0, c1 <= 11.0, c4 > 3.5, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 2, 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" 
+rule "#5547 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 == 4, c1 > 1.0, c4 > 2.0, c2 > 2.0, c3 <= 11.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 10, 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" 
+rule "#5569 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5626 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 6, 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(c4 == 12, c5 == 4, c1 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5647 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 12, s3 == 2, 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" 
+rule "#5649 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 11, c2 == 13, 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" 
+rule "#5764 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 > 3.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5820 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 4, c2 == 5, 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" 
+rule "#6020 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6114 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6156 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 3, c2 == 7, 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" 
+rule "#6207 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 == 2, c1 > 1.0, c2 > 1.0, c3 > 1.5, c4 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 13, c2 == 7, 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" 
+rule "#6383 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 == 4, c1 > 2.0, c2 > 1.0, c3 <= 12.5, c4 <= 12.5, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 5, c2 == 7, 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" 
+rule "#6385 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, c1 > 4.0, c2 > 4.5, c3 <= 11.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 5, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6452 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6518 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6615 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 6, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6711 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6714 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6769 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 11, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6774 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 12, 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" 
+rule "#6849 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 == 3, c1 > 3.0, c3 <= 12.0, c4 <= 11.5, c2 > 2.5, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 11, 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" 
+rule "#6871 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, c1 <= 12, c3 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 1, 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" 
+rule "#6966 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 == 3, c2 > 2.0, c1 > 1.5, c3 > 2.0, c4 > 4.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7194 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7234 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 5, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7245 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 4, c1 == 4, 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" 
+rule "#7253 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 3, c2 == 9, 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" 
+rule "#7314 poker_hand = 3 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7345 poker_hand = 3 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 11, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7385 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 8, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7456 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7536 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 7, 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" 
+rule "#7539 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7578 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 10, c1 == 3, 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" 
+rule "#7585 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7637 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7751 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 5, 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" 
+rule "#7936 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 == 1, c1 > 1.0, c2 > 2.0, c5 <= 12.0, c3 <= 11.5, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 7, 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" 
+rule "#7985 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 == 4, c2 <= 12.0, c3 > 2.5, c1 <= 13, c4 <= 11.0, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 7, c1 == 8, 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" 
+rule "#8039 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 == 4, c4 > 1.5, c3 > 5.5, c1 <= 13, c2 > 1.5, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 5, 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" 
+rule "#8085 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 == 4, c3 > 2.5, c2 > 1.0, c5 > 1.5, c1 > 1.5, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8100 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 6, 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" 
+rule "#8223 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 == 3, c1 > 2.0, c3 <= 13, c2 <= 12.0, c4 <= 12.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 7, c2 == 5, 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" 
+rule "#8248 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 <= 12.5, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 5, 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" 
+rule "#8257 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, c2 > 1.0, c4 > 2.0, c1 > 2.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8289 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8341 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 2, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8351 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 2, c2 == 2, 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" 
+rule "#8372 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, c2 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8478 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 13, 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" 
+rule "#8539 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 == 2, c1 <= 13, c3 > 2.0, c4 <= 12.5, c5 <= 12.0, c2 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 8, s2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8550 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 7, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8551 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 7, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8619 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 3, c2 == 13, 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" 
+rule "#8657 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 == 3, c2 > 2.0, c3 > 2.0, c1 > 2.0, c5 > 5.5, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 1, c3 == 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" 
+rule "#8719 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 == 4, c2 <= 12.0, c1 > 2.0, c3 <= 12.0, c4 <= 13, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8723 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 10, 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" 
+rule "#8727 poker_hand = 2 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, c3 > 1.5, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8794 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 6, c3 == 4, 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" 
+rule "#8801 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 <= 13, c1 > 2.0, c4 <= 5.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 10, 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" 
+rule "#8931 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 == 2, c2 > 3.5, c5 <= 10.0, c3 > 3.0, c1 > 3.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 5, 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" 
+rule "#8979 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 == 1, c1 <= 13, c2 > 2.5, c5 <= 8.5, c3 > 1.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9071 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 7, c2 == 6, 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" 
+rule "#9164 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 == 1, c3 <= 9.5, c1 <= 12.5, c4 > 1.0, c5 > 2.0, c2 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 3, c2 == 13, 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" 
+rule "#9165 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 == 2, c4 > 2.0, c1 > 1.5, c2 > 3.0, c3 > 1.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 3, c2 == 12, 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" 
+rule "#9367 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 7, c3 == 2, 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" 
+rule "#9395 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 5, c2 == 12, 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" 
+rule "#9401 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 == 1, c1 > 1.5, c4 > 1.0, c3 > 3.0, c5 <= 6.5, c2 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 5, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9420 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 12, 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" 
+rule "#9439 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9455 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9501 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 5, 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" 
+rule "#9640 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 <= 13, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9767 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 1, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9786 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 12, s5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9846 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 9, c1 == 9, 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" 
+rule "#9897 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 == 4, c3 > 1.0, c1 > 2.5, c4 <= 10.0, c2 > 2.5, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 9, 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" 
+rule "#9914 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, c1 > 2.5, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 4, 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" 
+rule "#9953 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 == 1, c1 <= 13, c2 > 1.5, c3 <= 13, c4 > 1.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 2, 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" 
+rule "#9971 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 == 3, c4 > 1.0, c5 <= 13, c2 > 2.0, c1 > 1.0, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 3, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9990 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 3, c2 == 3, 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" 
+rule "#10118 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 == 4, c2 > 1.0, c3 <= 11.5, c1 > 2.0, c4 > 3.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 2, 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" 
+rule "#10155 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 == 1, c1 <= 12.5, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 7, c3 == 3, 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" 
+rule "#10231 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 == 3, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 4, c2 == 2, 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" 
+rule "#10241 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 == 4, c2 > 4.5, c5 <= 13, c1 > 1.5, c3 <= 13, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10286 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 1, c2 == 10, 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" 
+rule "#10321 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, c4 > 3.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 12, s5 == 4, 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" 
+rule "#10335 poker_hand = 1 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, c5 > 3.0, c2 > 3.0, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 12, s5 == 2, 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" 
+rule "#10731 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10800 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 9, 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" 
+rule "#10909 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 12, 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" 
+rule "#10984 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 1, s5 == 1, 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" 
+rule "#11071 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11087 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 12, 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" 
+rule "#11288 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, c2 > 4.5, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 13, c1 == 11, 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" 
+rule "#11310 poker_hand = 2 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 <= 13, c2 > 2.0, c5 <= 12.5, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 12, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11409 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 4, c1 == 7, 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" 
+rule "#11519 poker_hand = 1 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11574 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 9, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11625 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 7, c1 == 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" 
+rule "#11642 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 == 2, c1 <= 12.0, c3 <= 11.5, c2 > 3.5, c5 > 2.0, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 1, 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" 
+rule "#11817 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 == 3, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 12, c2 == 13, 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" 
+rule "#11964 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 == 3, c3 <= 12.0, c1 > 2.0, c2 > 3.5, c5 > 1.0, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 6, c1 == 7, 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" 
+rule "#12044 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 == 4, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 2, c2 == 3, 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" 
+rule "#12096 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, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1342 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+rule "#12182 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, c4 > 3.5, c2 > 2.0, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 4, 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" 
+rule "#12261 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 4, c5 == 1, 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" 
+rule "#12263 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 3, c5 == 12, 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" 
+rule "#12305 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
 	 when
-		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 1, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 13, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12409 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12411 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 6, c2 == 12, 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" 
+rule "#12594 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 10, c1 == 6, 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" 
+rule "#12732 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 3, c1 == 7, 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" 
+rule "#12813 poker_hand = 0 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, c1 > 2.0, c4 > 2.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12821 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 11, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12910 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 7, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12955 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12959 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13089 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 1, s3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13129 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 13, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13158 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 10, 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" 
+rule "#13195 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, c1 > 2.0, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13275 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13380 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13384 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13553 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 6, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13586 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13612 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 1, s4 == 2, 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" 
+rule "#13640 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 == 1, c1 > 2.0, c5 <= 11.0, c2 <= 11.0, c3 > 1.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 12, s5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13718 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13797 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13987 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14003 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 10, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14119 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14121 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 3, 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" 
+rule "#14140 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 == 4, c5 <= 12.0, c1 > 2.5, c2 <= 11.5, c3 > 3.5, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 9, 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" 
+rule "#14151 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 == 4, c3 > 8.5, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 1, c3 == 11, 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" 
+rule "#14155 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, c1 > 2.0, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 1, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14315 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 8, c3 == 9, 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" 
+rule "#14345 poker_hand = 0 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 > 2.5, c4 <= 13, c1 <= 12, c3 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 7, c3 == 4, 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" 
+rule "#14349 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 == 3, c5 <= 8.0, c1 > 2.0, c2 > 2.5, c4 > 2.5, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 6, c1 == 13, 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" 
+rule "#14511 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 1, 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" 
+rule "#14572 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 9, c3 == 4, 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" 
+rule "#14771 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 == 1, c1 > 1.5, c5 > 3.5, c2 > 1.0, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 4, 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" 
+rule "#14773 poker_hand = 1 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 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14793 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 13, c3 == 8, 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" 
+rule "#14871 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 10, c2 == 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" 
+rule "#14888 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 == 4, c3 <= 10.0, c2 > 4.0, c5 > 3.5, c4 <= 12, c1 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 9, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14954 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15002 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 4, c3 == 12, 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" 
+rule "#15066 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, c1 > 2.0, c2 > 1.0, c3 > 5.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 11, 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" 
+rule "#15115 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15230 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 6, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15309 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 13, c3 == 10, 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" 
+rule "#15312 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 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 13, c3 == 7, 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" 
+rule "#15364 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 == 1, c5 <= 12.0, c3 > 4.5, c1 > 1.0, c2 > 1.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 11, c2 == 5, 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" 
+rule "#15459 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 == 2, c2 <= 11.5, c1 > 4.5, c5 > 2.5, c3 > 2.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15490 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15533 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15667 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15671 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 12, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15733 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 7, c1 == 1, 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" 
+rule "#15825 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, c2 > 3.0, c1 > 1.5, c3 > 2.0, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15866 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15870 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15935 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 10, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16148 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 5, 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" 
+rule "#16183 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 11, c3 == 8, 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" 
+rule "#16213 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 == 1, c3 <= 11.0, c1 > 1.0, c2 > 2.0, c5 <= 11.0, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 9, c1 == 4, 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" 
+rule "#16275 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 == 1, c2 <= 10.0, c5 <= 12.5, c1 <= 13, c3 > 3.0, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 6, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4755 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+rule "#16280 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 == 2, c1 > 1.5, c3 <= 13, c2 > 3.0, c4 <= 11.5, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 13, 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" 
+rule "#16371 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 == 3, c4 > 1.0, c2 > 1.0, c1 > 4.5, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 3, c3 == 8, 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" 
+rule "#16375 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 == 4, c5 <= 12.5, c1 > 1.0, c3 > 1.0, c4 > 1.5, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 3, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16392 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16406 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16412 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 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" 
+rule "#16489 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 == 4, c4 > 3.5, c3 > 3.0, c1 <= 13, c5 > 3.0, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16519 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 9, c2 == 2, 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" 
+rule "#16583 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 == 4, c5 <= 12.5, c4 > 4.5, c1 > 1.0, c2 > 3.0, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 1, 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" 
+rule "#16613 poker_hand = 2 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, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16629 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16672 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16809 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 6, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16813 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 5, s2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16816 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 5, s2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16889 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 9, 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" 
+rule "#17045 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 == 2, c3 <= 11.0, c1 > 1.0, c4 <= 13, c2 > 3.5, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 8, c2 == 1, 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" 
+rule "#17113 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 == 3, c3 <= 11.0, c1 > 1.5, c2 > 2.5, c4 > 1.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 8, 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" 
+rule "#17124 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 10, 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" 
+rule "#17195 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 2, c3 == 1, 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" 
+rule "#17227 poker_hand = 0 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, c2 > 8.5, c4 <= 12.5, c3 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17232 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 1, 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" 
+rule "#17250 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 9, 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" 
+rule "#17323 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 == 4, c1 <= 12, c2 <= 11.0, c3 > 2.5, c4 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 10, 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" 
+rule "#17329 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 == 2, c1 > 1.0, c4 > 1.5, c2 > 3.0, c3 > 1.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17376 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17414 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 6, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17507 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 6, 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" 
+rule "#17692 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, c1 <= 12.0, c5 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 5, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17713 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 4, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17769 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17834 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 12, c5 == 9, 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" 
+rule "#17837 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, c1 > 1.0, c2 > 1.0, c3 > 2.0, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 12, c5 == 6, 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" 
+rule "#18023 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 == 2, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 7, 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" 
+rule "#18080 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, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 1, 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" 
+rule "#18100 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 7, 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" 
+rule "#18177 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 == 2, c4 > 2.0, c3 > 2.0, c5 > 2.5, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 9, c2 == 6, 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" 
+rule "#18215 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 == 1, c5 <= 9.5, c4 > 6.5, c1 <= 12.0, c2 <= 12.0, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 6, c2 == 7, 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" 
+rule "#18225 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 == 2, c1 <= 9.5, c3 <= 13, c2 <= 9.0, c4 <= 10.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 5, c5 == 10, 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" 
+rule "#18273 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 == 1, c3 > 2.5, c1 <= 13, c5 <= 12, c4 <= 11.0, c2 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 2, c5 == 1, 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" 
+rule "#18340 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18403 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 7, s4 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18436 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 5, c5 == 7, 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" 
+rule "#18472 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, c3 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18492 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 2, c2 == 5, 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" 
+rule "#18511 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 13, c2 == 12, 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" 
+rule "#18513 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 == 3, c2 > 1.5, c1 <= 12.0, c4 <= 13, c5 <= 12.5, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 13, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18690 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18696 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18732 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 7, 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" 
+rule "#18770 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 == 4, c1 > 2.0, c3 > 3.0, c2 > 3.0, c5 <= 13, c4 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 6, 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" 
+rule "#18798 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 == 2, c5 > 1.5, c1 > 2.0, c2 > 1.0, c3 > 2.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 11, c2 == 4, 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" 
+rule "#18823 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 == 3, c4 > 4.5, c1 > 2.5, c2 > 5.5, c5 > 3.0, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 9, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18858 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 6, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18905 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 3, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18985 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19004 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 1, 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" 
+rule "#19105 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, c5 <= 13, c1 > 2.5, c2 > 2.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 6, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19179 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19187 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 3, c2 == 8, 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" 
+rule "#19360 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 == 3, c1 <= 13, c2 > 1.0, c3 > 1.5, c4 > 3.0, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19475 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19482 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19566 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 12, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19650 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 9, c2 == 9, 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" 
+rule "#19806 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 6, 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" 
+rule "#19865 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 9, s4 == 2, 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" 
+rule "#19866 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 == 2, c5 <= 11, c1 > 3.0, c2 <= 12.0, c3 > 2.5, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 9, s4 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19888 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 7, c3 == 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" 
+rule "#20042 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, c2 > 1.5, c4 <= 10.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 1, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20107 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 10, c3 == 12, 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" 
+rule "#20127 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 10, c3 == 4, 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" 
+rule "#20233 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 == 3, c4 <= 10.0, c2 > 1.0, c3 > 1.0, c1 > 3.5, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 3, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20266 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 2, c5 == 5, 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" 
+rule "#20283 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 == 2, c5 <= 13, c4 > 5.5, c1 > 2.0, c2 > 3.0, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 1, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20316 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 6, 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" 
+rule "#20322 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 == 1, c5 > 4.0, c1 <= 13, c2 > 2.5, c3 <= 11.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 13, 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" 
+rule "#20412 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 == 2, c4 > 1.0, c3 <= 11.0, c2 > 5.0, c5 <= 11.0, c1 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 8, c3 == 10, 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" 
+rule "#20456 poker_hand = 0 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 6, c3 == 4, 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" 
+rule "#20491 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 == 1, c3 <= 13, c1 <= 12.5, c4 <= 8.0, c2 <= 12.0, c5 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 4, c5 == 7, 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" 
+rule "#20493 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 == 1, c4 <= 13, c2 <= 12.0, c1 > 2.0, c3 > 3.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 4, c5 == 5, 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" 
+rule "#20584 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 == 3, c1 > 1.0, c2 > 2.0, c3 > 2.0, c4 > 2.5, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 13, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20628 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 11, c5 == 8, 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" 
+rule "#20632 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 == 2, c5 > 4.5, c3 <= 13, c4 <= 12.5, c1 <= 7.5, c2 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 11, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20701 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20716 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20794 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 13, c1 == 9, 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" 
+rule "#20797 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 == 2, c4 <= 13, c1 > 2.0, c5 > 1.0, c2 > 1.0, c3 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 13, c1 == 6, 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" 
+rule "#20871 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 == 4, c2 > 1.0, c5 > 2.0, c1 > 1.5, c3 > 2.0, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 7, 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" 
+rule "#20894 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 == 4, c4 > 2.0, c1 > 1.0, c3 > 2.5, c5 <= 10.5, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 9, c1 == 9, 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" 
+rule "#20982 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 == 3, c5 <= 12.0, c3 > 2.5, c1 > 1.0, c2 <= 7.5, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 4, c3 == 10, 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" 
+rule "#21010 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, c1 > 2.5, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 3, c3 == 7, 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" 
+rule "#21047 poker_hand = 0 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 9, 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" 
+rule "#21157 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 == 1, c5 > 2.5, c1 <= 12.5, c4 > 1.5, c2 > 6.0, c3 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 8, s1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21238 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 5, c2 == 9, 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" 
+rule "#21288 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 10, 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" 
+rule "#21415 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 == 3, c2 > 1.5, c1 > 1.0, c4 <= 11.0, c5 <= 8.5, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21462 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 9, c2 == 1, 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" 
+rule "#21502 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 == 2, c5 <= 11.0, c1 > 1.5, c4 > 1.5, c2 <= 12.0, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 6, c1 == 3, 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" 
+rule "#21506 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 <= 13, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 5, c2 == 12, 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" 
+rule "#21585 poker_hand = 0 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, c2 > 6.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 2, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21742 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21745 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 7, c1 == 12, 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" 
+rule "#21777 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 == 4, c5 > 2.5, c4 > 2.0, c1 > 1.5, c2 > 2.5, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 6, 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" 
+rule "#21830 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 == 3, c3 > 1.0, c1 <= 10.0, c2 > 1.0, c5 > 5.0, c4 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 3, c2 == 3, 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" 
+rule "#21991 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 == 1, c1 <= 11.0, c2 > 4.0, c3 <= 13, c4 <= 11.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 10, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#104 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+rule "#22127 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 8, 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" 
+rule "#22196 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 == 3, c1 > 2.5, c2 > 7.5, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 1, 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" 
+rule "#22284 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, c2 > 1.5, c4 <= 10.5, c3 > 2.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 10, c2 == 12, 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" 
+rule "#22402 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 == 4, c1 > 1.5, c4 <= 11.5, c2 > 2.5, c5 > 4.5, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 10, 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" 
+rule "#22468 poker_hand = 0 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, c2 <= 10.5, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 3, c2 == 6, 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" 
+rule "#22494 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 1, c1 == 6, 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" 
+rule "#22508 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 13, c2 == 5, 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" 
+rule "#22682 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, c2 > 2.0, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 12, 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" 
+rule "#22686 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 == 1, c1 > 2.5, c5 > 1.0, c2 <= 12.0, c3 <= 13, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 8, 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" 
+rule "#22907 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 == 1, c2 > 3.0, c1 > 4.5, c3 <= 10.0, c4 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 4, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22945 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23016 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 13, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23023 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 12, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23036 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23108 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23133 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 7, s4 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23134 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 7, s4 == 2, 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" 
+rule "#23135 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 == 1, c1 > 1.0, c2 > 1.0, c4 > 1.0, c3 > 1.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 7, s4 == 1, 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" 
+rule "#23175 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 > 1.0, c3 <= 11.0, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23287 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 12, 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" 
+rule "#23399 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, c1 > 1.5, c4 > 3.0, c3 > 2.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 8, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23477 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23541 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 1, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23545 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 1, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23611 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 11, c1 == 3, 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" 
+rule "#23622 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23725 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 3, c1 == 5, 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" 
+rule "#23732 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 2, c1 == 11, 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" 
+rule "#23814 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 == 1, c1 > 1.5, c2 > 1.0, c3 > 1.0, c4 > 1.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 3, 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" 
+rule "#23849 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, c2 > 3.5, c1 > 2.0, c3 <= 10.0, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 6, 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" 
+rule "#23910 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 == 4, c4 > 1.0, c2 <= 11.5, c5 > 6.5, c3 > 1.5, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 9, 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" 
+rule "#23915 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, c4 > 1.0, c3 <= 11.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24017 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 2, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24092 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 2, 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" 
+rule "#24217 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, c1 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 8, c1 == 2, 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" 
+rule "#24218 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 8, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24316 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 4, 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" 
+rule "#24409 poker_hand = 1 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 10, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24536 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 5, s2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24563 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24616 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 1, c2 == 10, 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" 
+rule "#24644 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 7, 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" 
+rule "#24649 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 2, 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" 
+rule "#24694 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 == 1, c3 <= 13, c1 <= 7.0, c5 > 2.0, c2 > 2.5, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 8, 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" 
+rule "#24715 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, c4 > 1.5, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24832 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 4, c1 == 8, 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" 
+rule "#24836 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 == 3, c4 > 3.0, c5 <= 11.5, c1 <= 12, c3 > 3.0, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 4, c1 == 4, 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" 
+rule "#24861 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 3, c1 == 4, 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" 
+rule "#24905 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, c2 <= 10.0, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25009 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 9, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25069 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 9, 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" 
+rule "#25071 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, c1 <= 12.5, c3 > 3.0, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25094 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25173 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 1, c3 == 7, 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" 
+rule "#25176 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 == 1, c2 > 2.0, c5 <= 11.0, c1 > 1.0, c3 <= 13, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 1, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25206 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 12, c2 == 12, 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" 
+rule "#25212 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 == 1, c3 > 1.0, c5 > 4.5, c1 > 3.0, c2 > 2.5, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 12, c2 == 6, 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" 
+rule "#25251 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 == 2, c4 > 2.0, c5 > 4.0, c1 > 4.0, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 10, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25268 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 9, c1 == 1, 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" 
+rule "#25310 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 6, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#25388 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 4, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25406 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 3, c2 == 1, 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" 
+rule "#25498 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 == 2, c1 <= 12.0, c2 > 1.0, c3 > 2.0, c4 > 1.5, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 10, c3 == 11, 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" 
+rule "#25499 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 == 4, c1 <= 12.0, c2 > 2.0, c3 > 1.5, c5 <= 12.5, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25569 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 7, c1 == 3, 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" 
+rule "#25573 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 == 1, c1 > 3.5, c3 > 2.0, c2 > 1.5, c5 <= 12.5, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 12, 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" 
+rule "#25593 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 == 3, c3 > 3.0, c5 <= 12.0, c1 > 2.0, c2 > 3.0, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 4, 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" 
+rule "#25711 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, c5 > 1.5, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 1, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25738 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 13, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25747 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 12, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25858 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 7, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25876 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 5, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25898 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 5, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25912 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26029 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 9, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26099 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 5, c1 == 5, 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" 
+rule "#26122 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 == 2, c5 > 4.0, c1 > 1.0, c2 <= 12.0, c3 <= 12.5, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 3, c1 == 8, 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" 
+rule "#26141 poker_hand = 1 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, c2 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 2, 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" 
+rule "#26217 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, c2 > 3.0, c1 > 3.0, c3 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 11, c3 == 2, 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" 
+rule "#26225 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 > 2.0, c5 <= 13, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26372 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 13, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26413 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 1, 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" 
+rule "#26465 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 == 2, c2 > 4.0, c3 > 1.5, c4 <= 8.5, c5 > 2.5, c1 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 9, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26490 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 8, c1 == 12, 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" 
+rule "#26686 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 3, 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" 
+rule "#26760 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 == 2, c1 > 2.5, c3 <= 11.0, c2 <= 11.0, c5 > 3.5, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 12, c1 == 3, 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" 
+rule "#26764 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 11, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26838 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 7, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26858 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 3, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26936 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27007 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 8, s3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27014 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27106 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27156 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 1, c1 == 6, 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" 
+rule "#27248 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 == 2, c5 <= 11.0, c1 > 1.5, c2 <= 10.5, c3 <= 9.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 10, c1 == 2, 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" 
+rule "#27330 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 == 2, c4 > 1.5, c1 <= 12.5, c3 > 2.0, c2 <= 12.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 9, 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" 
+rule "#27373 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 == 3, c2 <= 9.0, c1 > 5.5, c5 > 4.5, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 4, c1 == 3, 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" 
+rule "#27434 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27540 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 12, 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" 
+rule "#27572 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 == 1, c3 > 2.0, c5 > 2.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 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" 
+rule "#27599 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 3, 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" 
+rule "#27660 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, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27667 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27692 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 1, c1 == 12, 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" 
+rule "#27705 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 == 2, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 > 1.5, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 13, c2 == 12, 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" 
+rule "#27759 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 == 4, c2 > 2.5, c1 > 1.0, c4 <= 12, c3 <= 10.5, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 11, c3 == 8, 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" 
+rule "#27762 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 == 2, c2 > 1.5, c1 > 3.0, c3 <= 9.5, c4 > 1.0, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 11, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27799 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 6, 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" 
+rule "#27810 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 > 2.0, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28161 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 3, c3 == 11, 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" 
+rule "#28226 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 == 2, c1 <= 13, c4 > 2.0, c3 <= 9.0, c2 <= 11.5, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 10, s1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28352 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 6, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28374 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 5, c2 == 4, 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" 
+rule "#28403 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 == 1, c2 > 1.0, c3 <= 9.0, c1 > 1.5, c5 > 3.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 3, c2 == 13, 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" 
+rule "#28548 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 10, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28556 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 9, c3 == 11, 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" 
+rule "#28604 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 == 2, c2 <= 11.5, c1 <= 4.5, c4 > 2.0, c3 > 4.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 7, c3 == 13, 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" 
+rule "#28670 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, c2 > 2.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28727 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 3, 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" 
+rule "#28774 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, c5 <= 11.0, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 6, 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" 
+rule "#28782 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 == 3, c2 > 2.0, c5 > 5.5, c1 <= 12.0, c3 > 1.0, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 12, c3 == 11, 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" 
+rule "#28806 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 == 3, c2 > 2.0, c5 <= 5.5, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 11, c2 == 12, 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" 
+rule "#28820 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 10, c3 == 11, 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" 
+rule "#28841 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, c1 > 1.0, c4 > 1.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 9, c2 == 3, 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" 
+rule "#28894 poker_hand = 0 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 6, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28966 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 1, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29022 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 11, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29091 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 7, c5 == 8, 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" 
+rule "#29119 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 == 2, c3 <= 9.5, c1 > 1.5, c2 <= 11.0, c5 <= 11.5, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 5, c5 == 6, 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" 
+rule "#29228 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 == 1, c5 <= 11.0, c1 > 2.0, c2 <= 11.0, c3 > 2.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 9, 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" 
+rule "#29229 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 == 1, c4 > 1.0, c1 <= 10.0, c5 > 1.0, c3 > 10.0, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29259 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29303 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 3, c5 == 6, 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" 
+rule "#29315 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 == 4, c5 <= 12.5, c1 > 1.0, c3 > 1.0, c4 > 1.5, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29394 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 7, c2 == 6, 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" 
+rule "#29424 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 == 4, c1 > 4.0, c4 <= 12.5, c2 <= 11.0, c3 > 2.0, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 5, c2 == 2, 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" 
+rule "#29428 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29486 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 3, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29641 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 9, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29650 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 9, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29666 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29835 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 12, c2 == 6, 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" 
+rule "#29892 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 == 2, c1 <= 11.5, c2 > 1.0, c5 > 2.0, c3 <= 12.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 8, c3 == 13, 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" 
+rule "#29898 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 == 1, c3 <= 9.5, c5 > 3.0, c4 <= 13, c1 > 6.0, c2 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 8, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30031 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 1, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30102 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30208 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30369 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30379 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 10, c3 == 6, 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" 
+rule "#30437 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 == 4, c4 > 1.0, c1 > 2.5, c3 > 2.5, c5 <= 6.0, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 6, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30483 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 1, c5 == 10, 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" 
+rule "#30570 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 == 2, c1 <= 11.0, c2 > 1.0, c3 <= 11.0, c4 > 1.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30621 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 6, s2 == 3, 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" 
+rule "#30706 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 == 3, c1 <= 12.5, c2 > 2.5, c3 <= 11.5, c5 > 4.5, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 1, c2 == 7, 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" 
+rule "#30748 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 == 3, c3 > 1.5, c4 <= 13, c1 > 2.0, c2 > 3.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 12, c3 == 3, 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" 
+rule "#30837 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 == 3, c4 <= 12.0, c5 > 11.0, c1 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 1, 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" 
+rule "#30840 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 8, c3 == 11, 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" 
+rule "#30843 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 == 2, c3 <= 12.0, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30882 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30949 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30998 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 2, 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" 
+rule "#31017 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 1, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31023 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 1, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31103 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 9, c3 == 3, 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" 
+rule "#31178 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 == 2, c1 > 7.5, c2 > 1.0, c3 > 6.5, c4 > 2.0, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31333 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31437 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 7, c1 == 8, 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" 
+rule "#31511 poker_hand = 0 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, c2 <= 8.5, c1 > 2.0, c3 > 2.5, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 10, 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" 
+rule "#31558 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 2, s3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31559 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 2, s3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31625 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 11, c3 == 12, 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" 
+rule "#31630 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 11, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31640 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 10, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31701 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 7, c1 == 12, 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" 
+rule "#31707 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 == 4, c4 > 5.0, c3 > 1.0, c1 > 1.5, c2 <= 10.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 7, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31715 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 6, c3 == 11, 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" 
+rule "#31722 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 == 1, c3 <= 12.0, c1 > 2.5, c4 <= 11.5, c2 > 3.0, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 6, c3 == 4, 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" 
+rule "#31763 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 == 1, c3 <= 12.5, c5 > 3.0, c1 > 2.0, c2 <= 10.0, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 13, 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" 
+rule "#31765 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31879 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 11, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31880 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 11, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31926 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 9, c5 == 2, 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" 
+rule "#31929 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 == 4, c1 <= 12.0, c5 > 3.0, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 8, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31961 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 7, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31973 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 6, 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" 
+rule "#32005 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 == 3, c5 <= 7.5, c2 <= 13, c3 > 4.5, c1 <= 12.5, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 4, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32047 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 8, 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" 
+rule "#32145 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, c3 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 9, s1 == 3, 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" 
+rule "#32147 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 == 2, c3 <= 10.0, c4 <= 12.5, c1 <= 10.5, c2 > 3.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 9, s1 == 1, 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" 
+rule "#32159 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 == 4, c3 <= 10.0, c2 > 2.0, c5 <= 12.0, c1 > 3.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 8, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32236 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32252 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32266 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 9, 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" 
+rule "#32338 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 == 1, c5 <= 13, c3 <= 8.0, c2 > 1.5, c1 <= 13, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32355 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 11, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32461 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 2, 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" 
+rule "#32636 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 == 3, c4 <= 10.0, c1 <= 12.5, c3 > 1.0, c5 <= 12.0, c2 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 11, c5 == 4, 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" 
+rule "#32638 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 == 4, c2 <= 12.0, c4 > 1.5, c3 > 7.0, c1 <= 13, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 11, c5 == 2, 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" 
+rule "#32735 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 > 1.0, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 9, 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" 
+rule "#32835 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 == 1, c5 > 1.5, c3 > 3.0, c2 > 4.0, c1 > 1.5, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 1, s3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32870 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 12, c1 == 4, 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" 
+rule "#32946 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 == 2, c3 > 1.5, c4 > 2.5, c1 > 1.5, c2 > 3.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 9, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33175 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 13, s4 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33230 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 9, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33422 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 13, 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" 
+rule "#33586 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 3, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33614 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 1, s5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33615 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 1, s5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33643 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 11, s1 == 3, 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" 
+rule "#33728 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 == 4, c2 <= 5.0, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 6, 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" 
+rule "#33917 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 == 2, c3 <= 11.5, c1 > 1.0, c4 <= 12.0, c2 <= 13, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 13, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7008 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+rule "#34016 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 > 2.0, c3 > 2.5, c4 > 3.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 8, c3 == 6, 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" 
+rule "#34119 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 == 1, c4 > 5.0, c2 > 2.0, c1 > 3.0, c3 > 4.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 2, 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" 
+rule "#34185 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, c5 > 3.0, c3 <= 9.0, c4 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 1, c3 == 12, 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" 
+rule "#34257 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 == 3, c3 <= 11.0, c5 > 2.0, c1 > 2.5, c2 <= 13, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 11, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34261 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 10, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34359 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 7, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34382 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 7, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34498 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34579 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 13, c5 == 4, 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" 
+rule "#34692 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 == 1, c3 > 3.5, c1 > 1.0, c2 > 1.5, c4 > 5.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 8, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34737 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 5, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34910 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 9, c2 == 2, 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" 
+rule "#35059 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 2, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35115 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 12, c1 == 11, 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" 
+rule "#35247 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 == 1, c2 <= 10.0, c5 <= 8.5, c1 > 8.5, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35280 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35377 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 12, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35401 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 11, c5 == 3, 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" 
+rule "#35403 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 == 3, c1 > 1.0, c2 > 1.0, c3 > 1.5, c4 > 2.5, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 11, c5 == 1, 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" 
+rule "#35442 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 == 1, c1 <= 13, c2 > 2.5, c5 > 8.5, c4 <= 11, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 12, 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" 
+rule "#35522 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, c4 > 4.0, c3 > 4.0, c1 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 6, 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" 
+rule "#35714 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, c4 <= 9.5, c2 > 3.0, c3 > 1.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 13, c5 == 1, 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" 
+rule "#35783 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 == 2, c2 <= 11.0, c5 > 4.0, c1 > 1.0, c4 <= 10.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 7, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35816 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35851 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35856 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 13, 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" 
+rule "#35950 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 == 1, c3 > 1.5, c5 > 2.0, c1 <= 10.5, c2 > 3.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 13, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35953 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 13, c5 == 3, 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" 
+rule "#36069 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.5, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 8, c1 == 12, 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" 
+rule "#36088 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 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 7, c1 == 6, 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" 
+rule "#36117 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 == 3, c1 > 2.0, c5 <= 6.5, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 2, 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" 
+rule "#36134 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, c1 <= 9.5, c2 > 2.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 5, s3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36137 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 11, 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" 
+rule "#36253 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 == 2, c3 > 2.0, c4 > 1.0, c1 > 7.5, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36354 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 11, 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" 
+rule "#36366 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 12, 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" 
+rule "#36477 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 2, c2 == 13, 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" 
+rule "#36489 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 == 4, c3 <= 11.5, c1 > 3.0, c2 > 2.5, c4 <= 10.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 2, c2 == 1, 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" 
+rule "#36587 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 == 1, c2 > 5.0, c4 <= 12.0, c5 > 3.0, c1 > 2.5, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 3, 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" 
+rule "#36599 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 10, c1 == 4, 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" 
+rule "#36727 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 <= 11.5, c1 > 2.0, c3 > 4.5, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36773 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 4, 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" 
+rule "#36776 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 == 2, c2 > 4.0, c5 > 2.5, c3 > 1.0, c1 > 3.0, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 1, 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" 
+rule "#36777 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 == 2, c2 > 1.5, c1 <= 4.0, c3 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 3, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36811 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 4, 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" 
+rule "#36831 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 13, c2 == 10, 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" 
+rule "#36834 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 == 2, c2 > 4.5, c5 <= 12.5, c4 > 5.0, c1 <= 12.0, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 13, c2 == 7, 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" 
+rule "#36862 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 4, 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" 
+rule "#36912 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 > 1.0, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 9, c2 == 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" 
+rule "#36915 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 == 2, c5 <= 11.5, c1 <= 13, c3 > 1.5, c2 <= 10.0, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 9, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37017 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 3, c2 == 2, 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" 
+rule "#37027 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, c4 > 2.0, c1 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37046 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 11, 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" 
+rule "#37094 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 == 3, c2 <= 11.5, c1 > 1.0, c3 <= 13, c4 <= 13, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 13, 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" 
+rule "#37136 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 == 4, c3 > 1.5, c1 > 7.0, c2 > 1.0, c4 <= 12.0, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 11, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37163 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 8, c2 == 8, 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" 
+rule "#37203 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, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37276 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 2, c5 == 9, 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" 
+rule "#37283 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 == 4, c3 > 4.0, c1 <= 9.5, c2 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 2, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37289 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 1, c2 == 9, 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" 
+rule "#37311 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 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 12, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37336 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 10, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37472 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37554 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 1, 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" 
+rule "#37646 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 == 3, c1 <= 12.5, c2 > 3.0, c4 <= 12.0, c3 <= 10.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37684 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37758 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37767 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 1, c1 == 7, 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" 
+rule "#37866 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 == 2, c3 <= 12.0, c4 > 5.0, c1 <= 12.5, c2 > 3.0, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37868 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 7, 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" 
+rule "#37944 poker_hand = 1 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, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37949 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38048 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38075 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 1, s1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38210 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 11, 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" 
+rule "#38212 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, c2 <= 13, c3 <= 12.5, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 9, 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" 
+rule "#38338 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 > 3.5, c3 > 3.5, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 7, 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" 
+rule "#38414 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 > 2.0, c3 > 4.0, c1 > 3.0, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 13, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38534 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 7, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38569 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38613 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38624 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 3, 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" 
+rule "#38652 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38667 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 12, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38689 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 12, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38753 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 9, c1 == 13, 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" 
+rule "#38796 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.0, c5 > 5.5, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 8, 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" 
+rule "#38866 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38988 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39008 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39096 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 10, 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" 
+rule "#39148 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 == 3, c2 > 1.0, c1 > 3.0, c3 > 2.0, c4 <= 12.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39266 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 9, c1 == 6, 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" 
+rule "#39309 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 == 3, c3 <= 12, c4 > 1.0, c1 > 2.0, c2 > 1.0, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 7, s4 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39310 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 7, s4 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39344 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 6, 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" 
+rule "#39359 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 5, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39379 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39382 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39415 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39474 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39500 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 10, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39522 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 9, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39592 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 6, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39606 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39632 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39649 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 3, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39680 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 11, 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" 
+rule "#39869 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 4, c1 == 13, 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" 
+rule "#39872 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 == 1, c2 <= 11.5, c1 > 1.0, c3 > 4.5, c4 > 4.5, c5 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 4, c1 == 10, 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" 
+rule "#40069 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 == 3, c5 <= 13, c3 <= 10.0, c2 <= 8.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 12, 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" 
+rule "#40120 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 == 3, c2 > 3.5, c4 > 3.0, c5 > 3.5, c3 > 7.0, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40151 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40152 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40163 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 7, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40260 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 1, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40273 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40301 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 12, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40302 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40367 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40370 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40380 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 8, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40434 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 5, s2 == 4, 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" 
+rule "#40436 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 <= 11.5, c3 <= 11.5, c2 > 4.5, c1 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 5, s2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40451 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 13, 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" 
+rule "#40503 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 == 2, c1 <= 12.0, c2 > 4.0, c4 > 5.0, c3 <= 10.0, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 13, c1 == 12, 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" 
+rule "#40641 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 8, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40683 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 6, 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" 
+rule "#40698 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 == 1, c2 <= 10.0, c5 > 5.5, c3 > 1.5, c4 <= 8.5, c1 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 3, 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" 
+rule "#40752 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, c4 <= 10.5, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 12, 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" 
+rule "#40773 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 == 3, c3 <= 5.5, c4 <= 9.0, c1 <= 10.0, c2 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40777 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 3, s3 == 3, 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" 
+rule "#41160 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, c5 <= 10.0, c2 > 3.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 1, 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" 
+rule "#41208 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 == 2, c1 > 2.5, c3 <= 13, c2 > 3.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 9, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41216 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41275 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41320 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 8, 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" 
+rule "#41321 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 == 2, c1 > 2.5, c3 <= 13, c2 > 3.5, c4 > 3.0, c5 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 7, 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" 
+rule "#41393 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41508 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 7, 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" 
+rule "#41703 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 == 3, c2 > 2.0, c1 <= 9.0, c3 > 2.0, c4 > 1.0, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 10, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41766 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 12, 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" 
+rule "#41767 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, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 11, 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" 
+rule "#41800 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 > 4.5, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 7, c5 == 3, 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" 
+rule "#41801 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 == 1, c1 > 1.0, c4 > 5.0, c3 <= 8.0, c5 > 4.0, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 7, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41853 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42030 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 7, c3 == 2, 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" 
+rule "#42060 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 == 3, c4 > 3.5, c1 > 2.5, c5 > 3.5, c2 > 1.5, c3 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 5, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42107 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 3, c5 == 1, 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" 
+rule "#42228 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 9, 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" 
+rule "#42279 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 5, c1 == 8, 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" 
+rule "#42400 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 1, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42646 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 2, 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" 
+rule "#42673 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 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 3, c1 == 13, 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" 
+rule "#42695 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 == 1, c4 > 3.0, c2 <= 12.5, c3 > 6.0, c1 <= 10.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 2, c1 == 4, 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" 
+rule "#42706 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 1, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42769 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 5, 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" 
+rule "#42933 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 3, c3 == 6, 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" 
+rule "#42997 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 == 1, c1 > 2.0, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 12, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43036 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43089 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 9, c3 == 1, 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" 
+rule "#43096 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 == 3, c1 > 1.0, c2 > 2.0, c5 <= 11.5, c3 > 6.0, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 8, c3 == 7, 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" 
+rule "#43140 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 == 4, c3 <= 10, c5 <= 12, c4 <= 7.0, c1 > 2.0, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 6, c3 == 13, 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" 
+rule "#43161 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 == 2, c4 > 4.0, c1 > 3.0, c2 > 6.5, c5 <= 12.5, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43166 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 4, c3 == 13, 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" 
+rule "#43167 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 == 1, c3 > 1.0, c5 <= 4.5, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 4, c3 == 12, 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" 
+rule "#43237 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, c4 > 1.0, c2 > 3.0, c1 > 9.0, c5 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43329 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 13, 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" 
+rule "#43343 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 11, 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" 
+rule "#43374 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 == 1, c5 > 4.0, c3 <= 11.0, c4 > 2.5, c1 > 1.0, c2 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 9, c1 == 5, 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" 
+rule "#43416 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 7, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43523 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43660 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43699 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43767 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 2, 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" 
+rule "#43784 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 2, c3 == 11, 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" 
+rule "#43790 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 == 2, c2 > 1.0, c3 > 1.0, c4 <= 10.5, c5 <= 11, c1 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 2, c3 == 5, 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" 
+rule "#43797 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, c4 <= 12.5, c2 <= 9.5, c3 <= 13, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 11, 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" 
+rule "#43860 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 == 4, c1 <= 10.5, c5 > 3.5, c2 > 4.0, c4 > 2.5, c3 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 13, 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" 
+rule "#43904 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, c5 > 1.5, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 8, c1 == 6, 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" 
+rule "#43924 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, c5 <= 12.5, c2 > 2.0, c4 <= 11.5, c1 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 6, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43945 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 4, 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" 
+rule "#43970 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 == 3, c1 <= 12.5, c3 <= 11.5, c4 <= 6.5, c2 > 2.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 3, c5 == 5, 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" 
+rule "#44116 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 == 2, c5 <= 13, c2 > 2.0, c1 <= 13, c3 > 1.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 10, c1 == 9, 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" 
+rule "#44165 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 8, c3 == 10, 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" 
+rule "#44275 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 == 4, c3 <= 10.0, c2 > 4.0, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44341 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 12, 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" 
+rule "#44346 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, c3 > 2.5, c4 > 1.0, c2 > 5.0, c1 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 7, 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" 
+rule "#44441 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, c3 > 4.0, c2 <= 12, c1 <= 9.5, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 12, 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" 
+rule "#44448 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, c3 > 2.0, c4 > 3.5, c2 > 4.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44462 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 4, 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" 
+rule "#44528 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 3, c3 == 13, 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" 
+rule "#44688 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, c1 > 1.0, c5 > 1.5, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 1, 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" 
+rule "#44771 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 == 1, c3 > 6.5, c2 > 1.5, c5 > 1.5, c1 > 2.0, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 7, 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" 
+rule "#44931 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, c2 > 3.0, c3 > 1.5, c1 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 12, c3 == 11, 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" 
+rule "#44948 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-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)
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 7, 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" 
+rule "#45005 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, c4 > 8.0, c1 > 1.5, c2 > 1.0, c5 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 8, 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" 
+rule "#45026 poker_hand = 1 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, c4 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 7, c3 == 5, 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" 
+rule "#45067 poker_hand = 1 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, c4 > 4.0, c3 > 3.0, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 5, c3 == 2, 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" 
+rule "#45070 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 > 2.5, c4 > 1.0, c5 > 5.5, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 4, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3428 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#45104 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 == 1, c2 > 1.5, c5 > 2.0, c3 > 4.0, c1 > 2.0, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 2, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45106 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 2, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 12, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#47 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#82 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 7, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#110 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 6, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#118 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#122 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 5, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#123 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 5, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#124 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 5, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#153 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 3, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#160 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 2, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#170 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#175 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 1, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#184 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#204 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 11, c1 == 4, 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" 
+rule "#210 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 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 11, 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" 
+rule "#213 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, c3 > 1.0, c5 > 2.0, c1 > 2.0, c2 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 8, 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" 
+rule "#214 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, c3 > 2.5, c4 <= 10.0, c1 > 2.5, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 7, 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" 
+rule "#228 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 > 1.0, c2 <= 13, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 5, 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" 
+rule "#231 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, c4 > 3.0, c3 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 2, 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" 
+rule "#232 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 == 4, c2 <= 13, c1 <= 8.0, c4 > 3.0, c5 <= 4.0, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 1, 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" 
+rule "#240 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, c5 > 4.0, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 9, c1 == 6, 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" 
+rule "#242 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, c3 > 9.0, c2 <= 10.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 9, c1 == 4, 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" 
+rule "#244 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, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 9, c1 == 2, 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" 
+rule "#245 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 == 2, c1 > 1.5, c3 > 4.0, c5 > 2.0, c4 > 3.5, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 9, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3903 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#249 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 == 1, c3 > 3.0, c4 <= 9.0, c1 > 8.0, c2 > 2.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 8, c1 == 10, 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" 
+rule "#258 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 == 4, c1 > 1.0, c3 > 2.0, c2 > 4.0, c5 > 3.0, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 8, c1 == 1, 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" 
+rule "#290 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 == 4, c1 > 1.0, c3 > 2.0, c2 > 4.0, c5 > 3.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 6, c1 == 7, 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" 
+rule "#302 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)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 5, c1 == 8, 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" 
+rule "#313 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)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 10, 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(c4 == 13, c3 == 12, c5 == 4, c2 == 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" 
+rule "#331 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 == 2, c5 <= 11.0, c2 <= 12.0, c3 > 2.5, c4 <= 12.5, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 4, 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" 
+rule "#349 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, c1 > 2.5, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 3, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#375 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 2, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#379 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 2, c1 == 6, 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" 
+rule "#382 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 2, c1 == 3, 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" 
+rule "#386 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 1, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#390 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 1, c1 == 8, 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" 
+rule "#435 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, c1 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 11, c1 == 2, 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" 
+rule "#436 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 == 2, c3 > 2.0, c1 <= 12, c2 > 1.5, c4 > 1.0, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 11, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#466 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 8, 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" 
+rule "#470 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, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#479 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 9, c1 == 8, 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" 
+rule "#513 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 == 1, c1 <= 10.0, c4 > 1.5, c2 > 2.0, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 12, 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" 
+rule "#514 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 > 5.0, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4435 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#518 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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 7, 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" 
+rule "#601 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, c2 > 2.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#655 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#662 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 2, s2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#663 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 2, s2 == 2, s3 == 4, 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" 
+rule "#668 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, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 1, c1 == 13, 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" 
+rule "#673 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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 1, c1 == 8, 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" 
+rule "#678 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 == 4, c3 > 2.5, c1 <= 8.5, c4 <= 12.0, c2 > 1.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 1, c1 == 3, 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" 
+rule "#689 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 == 4, c5 <= 4.5, c1 <= 12.0, c2 <= 13, c3 <= 13, c4 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 13, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#726 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 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" 
+rule "#750 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, c3 <= 11.0, c1 > 1.0, c4 <= 4.0, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 10, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#751 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#774 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 9, c2 == 8, 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" 
+rule "#782 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, c3 <= 11.0, c1 > 1.0, c4 > 4.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 8, c1 == 13, 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" 
+rule "#783 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, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 8, c1 == 12, 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" 
+rule "#786 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 == 1, c3 <= 6.5, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 8, c1 == 9, 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" 
+rule "#795 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, c4 > 2.5, c3 > 3.0, c1 > 4.5, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 13, 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" 
+rule "#815 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 == 2, c3 > 1.5, c1 <= 8.0, c4 <= 13, c5 <= 12, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#817 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 6, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#820 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 6, c2 == 1, 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" 
+rule "#845 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, c5 > 5.0, c2 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 1, 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" 
+rule "#872 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 == 1, c5 > 1.0, c2 <= 9.0, c1 <= 11.0, c3 > 2.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#878 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 3, c2 == 6, 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" 
+rule "#884 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, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#893 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 2, c2 == 6, c1 == 11, 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" 
+rule "#913 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, c5 > 4.5, c3 > 5.0, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 9, 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" 
+rule "#914 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 > 3.5, c2 <= 11.5, c5 > 5.5, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 8, 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" 
+rule "#916 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 6, 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" 
+rule "#934 poker_hand = 3 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, c4 > 3.0, c5 <= 9.5, c2 <= 12.0, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#956 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#976 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 8, 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" 
+rule "#993 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 3, 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" 
+rule "#999 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 <= 8.0, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 11, c1 == 10, 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" 
+rule "#1014 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1024 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 9, c5 == 11, 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" 
+rule "#1026 poker_hand = 3 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, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 9, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1027 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 9, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1037 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 8, c5 == 11, 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" 
+rule "#1048 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, c5 <= 12.0, c1 > 2.0, c2 > 3.5, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 7, c1 == 13, 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" 
+rule "#1052 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 7, c1 == 9, 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" 
+rule "#1058 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 == 1, c2 <= 12.5, c1 > 2.5, c3 > 3.0, c4 <= 11.0, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 7, c1 == 3, 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" 
+rule "#1062 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 == 1, c2 <= 12.5, c1 > 2.5, c3 > 3.0, c4 <= 11.0, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 6, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1090 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 5, c1 == 9, 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" 
+rule "#1122 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 == 1, c2 > 1.0, c5 > 9.0, c1 <= 12, c3 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 2, 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" 
+rule "#1130 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 == 4, c5 <= 9.5, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1163 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 1, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1172 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 1, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1210 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 11, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1217 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 10, c5 == 10, 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" 
+rule "#1218 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 == 3, c1 > 1.0, c2 > 4.0, c4 > 2.5, c3 <= 9.5, c5 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 10, c5 == 9, 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" 
+rule "#1221 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 == 1, c4 <= 8.0, c2 <= 12.0, c1 > 5.0, c3 > 4.0, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 10, c5 == 6, 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" 
+rule "#1259 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 == 4, c2 > 1.0, c3 <= 12.5, c4 > 1.5, c5 > 1.0, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 8, c2 == 6, 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" 
+rule "#1275 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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1276 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 7, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1286 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 6, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1290 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 6, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1293 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 5, c2 == 11, 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" 
+rule "#1315 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 <= 10.5, c2 <= 13, c3 > 1.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 5, c2 == 1, 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" 
+rule "#1338 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 == 1, c1 <= 13, c4 <= 8.0, c5 <= 13, c2 <= 13, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 4, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1344 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1347 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 7, 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(c4 == 13, c3 == 8, c1 == 2, c2 == 8, 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" 
+rule "#1382 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 > 1.5, c2 <= 11.5, c4 > 1.5, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1408 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1421 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 13, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1427 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1431 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 11, 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" 
+rule "#1432 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, c1 <= 13, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1433 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 9, 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" 
+rule "#1456 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 == 2, c1 <= 9.0, c3 <= 11.5, c2 > 6.0, c4 > 5.5, c5 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 11, c1 == 11, 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" 
+rule "#1510 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, c3 <= 11.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 7, 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" 
+rule "#1533 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, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 8, c1 == 9, 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(c4 == 13, c3 == 7, c2 == 8, c1 == 8, 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" 
+rule "#1539 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 8, c1 == 3, 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" 
+rule "#1560 poker_hand = 3 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, c1 > 2.5, c2 > 1.0, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 7, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1562 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 7, c1 == 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" 
+rule "#1596 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, c2 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1598 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 6, 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" 
+rule "#1671 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, c4 > 3.0, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 4, c5 == 7, 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" 
+rule "#1674 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 4, c5 == 4, 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" 
+rule "#1680 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, c1 > 1.5, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 3, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1686 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1693 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1696 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1712 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1713 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1716 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 1, c5 == 13, 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" 
+rule "#1719 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, c4 <= 8.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 1, c5 == 10, 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" 
+rule "#1784 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 == 2, c4 <= 11.0, c3 <= 12.0, c5 > 9.5, c1 <= 9.0, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 7, 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" 
+rule "#1787 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, c2 <= 4.0, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 4, 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" 
+rule "#1788 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, c2 > 4.0, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 3, 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" 
+rule "#1789 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 <= 10.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1811 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 10, c2 == 6, 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" 
+rule "#1820 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, c2 <= 8.5, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 10, 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" 
+rule "#1821 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, c4 <= 12, c3 <= 7.5, c2 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1867 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 12, 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" 
+rule "#1872 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 == 1, c1 > 1.0, c2 > 1.5, c3 > 2.5, c4 <= 11.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 7, 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" 
+rule "#1881 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 == 1, c1 > 1.0, c2 > 1.5, c3 > 2.5, c4 <= 11.5, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1883 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1886 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 6, 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" 
+rule "#1905 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 == 3, c5 > 1.5, c2 > 3.0, c1 <= 11.0, c3 <= 10.5, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 6, c2 == 12, 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" 
+rule "#1908 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 6, c2 == 9, 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" 
+rule "#1910 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, c3 > 2.5, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 6, c2 == 7, 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" 
+rule "#1929 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)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 5, c2 == 13, 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" 
+rule "#1960 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 == 2, c5 > 2.0, c3 <= 13, c1 > 3.0, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7544 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#1977 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 == 2, c5 > 2.0, c3 <= 13, c1 > 3.0, c2 > 4.0, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 2, c2 == 7, 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" 
+rule "#1979 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 == 1, c3 > 9.5, c5 > 1.5, c4 > 3.0, c1 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 2, c2 == 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" 
+rule "#1989 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 > 1.0, c4 > 2.0, c3 > 4.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 1, c2 == 8, 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" 
+rule "#2008 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, c1 <= 10.5, c3 <= 11.5, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 13, c5 == 2, 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" 
+rule "#2009 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, c4 <= 8.5, c3 > 3.0, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 13, c5 == 1, 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" 
+rule "#2035 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, c3 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 11, c1 == 13, 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" 
+rule "#2040 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, c1 > 1.0, c2 <= 8.0, c3 <= 10.5, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 11, c1 == 8, 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" 
+rule "#2062 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 11, 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" 
+rule "#2069 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, c4 > 2.0, c2 > 2.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 4, 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" 
+rule "#2084 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, c4 > 2.0, c2 > 2.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7972 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#2090 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 == 4, c5 <= 13, c2 <= 5.0, c3 > 1.5, c4 <= 9.0, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 9, c1 == 8, 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" 
+rule "#2100 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, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8052 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#2101 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, c4 <= 9.5, c3 <= 10.0, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8069 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#2117 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 <= 12.0, c3 <= 12.5, c4 > 3.0, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 6, 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" 
+rule "#2121 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, c1 <= 12.5, c2 <= 12, c3 > 1.5, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 2, 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" 
+rule "#2125 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 == 3, c2 <= 11.0, c4 <= 10.0, c1 > 1.0, c5 > 1.5, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 1, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8176 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#2154 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 == 3, c2 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 6, 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" 
+rule "#2157 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 == 2, c5 > 1.5, c3 > 1.0, c1 <= 11.0, c4 <= 13, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8291 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#2162 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, c2 > 1.0, c4 <= 11.0, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 11, 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" 
+rule "#2177 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, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 8, 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" 
+rule "#2192 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 > 3.0, c2 <= 13, c4 > 2.0, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 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" 
+rule "#2196 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 == 4, c5 > 2.0, c2 > 2.5, c1 <= 9, c3 <= 11.0, c4 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 1, 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" 
+rule "#2206 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, c4 <= 12.0, c2 > 4.0, c3 > 4.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 5, c1 == 4, 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" 
+rule "#2257 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
 	 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)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8627 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#2263 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-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)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 9, 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" 
+rule "#2285 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 == 4, c4 <= 11.5, c5 <= 11.0, c1 <= 12.0, c2 > 5.5, c3 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2360 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2362 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2379 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2422 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 11, 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" 
+rule "#2450 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, c2 <= 11.5, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 8, 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" 
+rule "#2452 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 == 3, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 6, 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" 
+rule "#2454 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 4, 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" 
+rule "#2471 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 > 2.5, c2 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 8, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2492 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 8, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2520 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 5, 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" 
+rule "#2525 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 == 1, c2 > 1.5, c5 <= 10.5, c3 > 4.5, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 5, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2530 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 5, c5 == 8, 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" 
+rule "#2542 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 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 4, c2 == 9, 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" 
+rule "#2549 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 4, c2 == 2, 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" 
+rule "#2551 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, c4 > 1.5, c2 <= 6.0, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 3, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2554 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 3, c2 == 10, 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" 
+rule "#2610 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, c1 <= 12.5, c2 > 3.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2630 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2631 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2634 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 4, 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" 
+rule "#2650 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 == 1, c5 > 4.0, c4 > 5.5, c2 > 1.0, c1 > 5.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 12, c1 == 2, 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" 
+rule "#2652 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 11, 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" 
+rule "#2654 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, c4 > 1.0, c5 > 3.5, c3 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2655 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2672 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2678 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 10, 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" 
+rule "#2684 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, c1 <= 12.5, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 9, c2 == 8, 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" 
+rule "#2720 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 == 3, c5 > 1.5, c3 <= 13, c1 > 10.0, c2 > 2.5, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 1, c2 == 5, 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(c4 == 13, c3 == 3, c5 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2747 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 10, c1 == 1, c2 == 3, 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" 
+rule "#2752 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 == 4, c2 <= 12.0, c5 > 1.0, c4 > 8.0, c1 > 3.5, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2754 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 9, 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" 
+rule "#2763 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, c1 > 2.0, c3 > 2.5, c4 <= 11.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 13, 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" 
+rule "#2791 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, c5 > 4.5, c1 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 9, 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" 
+rule "#2813 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)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2853 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2860 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 5, c2 == 3, 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" 
+rule "#2884 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 <= 11.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 4, 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" 
+rule "#2891 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, c2 > 5.0, c4 > 2.0, c1 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2909 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 2, c2 == 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" 
+rule "#2910 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, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 2, c2 == 4, 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" 
+rule "#2921 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, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 12, c2 == 7, 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" 
+rule "#2928 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 == 2, c4 <= 13, c2 <= 9.5, c1 > 2.5, c5 > 4.0, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 11, 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" 
+rule "#2929 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, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 10, 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" 
+rule "#2938 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 4, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2966 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 13, c1 == 10, 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" 
+rule "#2975 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 > 1.5, c3 > 1.0, c4 <= 4.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 13, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2979 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 12, c1 == 10, 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" 
+rule "#2980 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 == 1, c1 <= 5.0, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 12, c1 == 9, 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" 
+rule "#2985 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, c2 > 3.0, c3 <= 13, c4 > 4.5, c5 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 12, c1 == 4, 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" 
+rule "#2986 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, c1 > 9.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 12, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2999 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 11, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3005 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 10, c2 == 10, 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" 
+rule "#3034 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 <= 11.5, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 9, c1 == 6, 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" 
+rule "#3035 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)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 9, c1 == 5, 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" 
+rule "#3044 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)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 8, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10076 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+rule "#3048 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 == 1, c1 <= 9.0, c2 > 2.0, c4 > 7.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 8, c1 == 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" 
+rule "#3052 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 == 4, c1 > 2.0, c5 > 2.0, c2 > 5.0, c3 > 3.0, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 8, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3053 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 7, c1 == 13, 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" 
+rule "#3060 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 == 3, c5 > 4.0, c4 <= 9.5, c3 > 3.0, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 7, c1 == 6, 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" 
+rule "#3067 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, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 6, c1 == 12, 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" 
+rule "#3131 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)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 3, c1 == 11, 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" 
+rule "#3139 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, c3 > 1.5, c4 > 2.5, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 3, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3159 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 1, c2 == 9, 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" 
+rule "#3174 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 13, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3185 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 12, c1 == 9, 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" 
+rule "#3231 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 == 2, c1 > 5.5, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 10, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3240 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 10, c1 == 4, 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" 
+rule "#3243 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 == 3, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 10, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3247 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3253 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 4, 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" 
+rule "#3255 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 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 2, 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" 
+rule "#3259 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, c5 > 4.0, c2 > 2.0, c3 > 2.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 8, c1 == 11, 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" 
+rule "#3261 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 8, c1 == 9, 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" 
+rule "#3275 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 <= 8.5, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3319 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 1, 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" 
+rule "#3320 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 == 3, c1 > 2.5, c2 <= 7.5, c3 <= 13, c5 > 2.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 5, c1 == 13, 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" 
+rule "#3344 poker_hand = 2 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3346 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 4, c1 == 12, 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" 
+rule "#3353 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 4, c1 == 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" 
+rule "#3374 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 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 10, 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" 
+rule "#3375 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 == 2, c3 <= 6.0, c1 <= 9.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 9, 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" 
+rule "#3395 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 == 2, c3 > 6.0, c1 <= 8.5, c2 > 2.0, c4 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 1, 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" 
+rule "#3402 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 1, c1 == 7, 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" 
+rule "#3405 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 == 1, c1 > 1.0, c3 > 1.5, c4 <= 10.0, c5 <= 7.5, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 1, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#414 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#3412 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 == 2, c5 > 9.0, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 13, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3434 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3442 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 12, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3479 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 9, c1 == 7, 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" 
+rule "#3485 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 9, c1 == 1, 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" 
+rule "#3497 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)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 8, c1 == 2, 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" 
+rule "#3517 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 7, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3518 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 7, c2 == 6, 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" 
+rule "#3524 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 > 5.0, c4 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 6, c1 == 13, 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" 
+rule "#3528 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, c4 > 7.0, c1 > 1.5, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 6, c1 == 9, 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" 
+rule "#3534 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 6, c1 == 3, 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" 
+rule "#3549 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 == 3, c2 <= 13, c3 <= 6.5, c1 > 1.5, c4 <= 11.5, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 5, c2 == 13, 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" 
+rule "#3555 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 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 5, c2 == 7, 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" 
+rule "#3583 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3585 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 2, 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" 
+rule "#3637 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 == 4, c1 > 3.0, c4 > 4.0, c2 <= 7.5, c5 > 4.0, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 1, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3642 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 1, c2 == 8, 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" 
+rule "#3648 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, c1 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 1, c2 == 2, 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" 
+rule "#3659 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, c2 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 11, c2 == 6, 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" 
+rule "#3663 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 11, c2 == 2, 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" 
+rule "#3672 poker_hand = 2 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3704 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 7, c2 == 1, 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" 
+rule "#3705 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 == 3, c2 > 3.5, c4 > 3.0, c5 > 3.5, c3 <= 7.0, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 6, c2 == 13, 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" 
+rule "#3730 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 <= 10.0, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 5, c3 == 1, 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" 
+rule "#3749 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 == 1, c5 > 3.0, c4 <= 11.5, c3 <= 11.5, c2 <= 4.5, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 3, c2 == 8, 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" 
+rule "#3750 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 == 3, c2 <= 9.0, c1 > 2.0, c3 > 2.5, c4 <= 12.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 3, c2 == 7, 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" 
+rule "#3752 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 == 2, c1 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 3, c2 == 5, 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" 
+rule "#3761 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 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 2, c2 == 9, 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" 
+rule "#3762 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)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 2, c2 == 8, 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" 
+rule "#3769 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, c4 > 1.0, c3 > 1.5, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 2, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3773 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 1, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3776 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 1, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3785 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3805 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 3, 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" 
+rule "#3822 poker_hand = 2 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 <= 13, c3 > 5.5, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 12, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3847 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 11, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3869 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 11, c1 == 1, 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" 
+rule "#3885 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 10, 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(c4 == 12, c5 == 11, c3 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3916 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 3, 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" 
+rule "#3931 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 == 2, c1 > 4.5, c3 > 4.0, c4 > 1.5, c2 > 1.0, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 9, c1 == 1, 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" 
+rule "#3932 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 == 2, c1 > 4.5, c3 > 4.0, c4 > 1.5, c2 > 1.0, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 8, c2 == 13, 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" 
+rule "#3933 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 == 4, c1 > 2.0, c2 > 1.5, c5 <= 10.5, c3 > 4.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 8, c2 == 12, 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" 
+rule "#3939 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, c2 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 8, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3942 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3963 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 7, c2 == 7, 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" 
+rule "#3964 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 7, c2 == 6, 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" 
+rule "#3969 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, c1 > 7.0, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 7, c2 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3982 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 6, 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(c4 == 12, c5 == 11, c3 == 5, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3989 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3992 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 5, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3995 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 5, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4000 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4003 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4004 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4005 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4074 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 13, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4087 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 12, c3 == 11, 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" 
+rule "#4089 poker_hand = 3 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 <= 6.5, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 12, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4121 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 11, c2 == 2, 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" 
+rule "#4124 poker_hand = 2 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 10, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4129 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 10, c2 == 7, 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" 
+rule "#4132 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 10, c2 == 4, 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" 
+rule "#4135 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 == 3, c3 <= 12.0, c5 > 9.5, c1 > 2.0, c2 <= 10.5, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 10, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4136 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 13, 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" 
+rule "#4181 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 == 1, c5 > 2.0, c4 > 1.0, c1 > 1.5, c2 > 1.5, c3 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4184 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4190 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 8, c2 == 8, 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" 
+rule "#4192 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 == 2, c4 > 7.0, c3 <= 12.0, c1 <= 10, c5 <= 9.0, c2 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 8, c2 == 6, 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" 
+rule "#4262 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, c3 > 4.0, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 11, 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(c4 == 12, c5 == 10, c1 == 3, c2 == 11, 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" 
+rule "#4382 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 == 2, c3 > 2.0, c5 <= 13, c1 > 4.0, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 7, c3 == 9, 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" 
+rule "#4396 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)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4397 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4400 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4401 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4440 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 11, c2 == 8, 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" 
+rule "#4459 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 == 3, c1 > 1.0, c2 > 1.5, c3 <= 12.0, c5 <= 12.5, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 11, c2 == 1, 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" 
+rule "#4466 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 == 1, c4 > 3.0, c2 <= 12.5, c3 <= 6.0, c1 > 2.0, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 10, c2 == 7, 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" 
+rule "#4486 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4499 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 8, c2 == 12, 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" 
+rule "#4507 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 == 2, c1 > 2.5, c3 <= 10.0, c2 > 3.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 8, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4510 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4536 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 6, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4543 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 6, c2 == 6, 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" 
+rule "#4562 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 == 2, c1 > 2.5, c3 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 5, c3 == 12, 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" 
+rule "#4576 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, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4578 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 4, c3 == 9, 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" 
+rule "#4579 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 == 2, c5 > 1.0, c3 <= 11.5, c2 <= 11.0, c1 > 6.0, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 4, c3 == 8, 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" 
+rule "#4580 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 == 2, c5 > 1.0, c3 <= 11.5, c2 <= 11.0, c1 > 6.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 4, c3 == 7, 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" 
+rule "#4582 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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4585 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4588 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 3, c3 == 12, 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" 
+rule "#4590 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 == 4, c5 > 1.0, c3 > 2.0, c4 <= 12.0, c2 <= 3.0, c1 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 3, c3 == 10, 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" 
+rule "#4614 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 2, c2 == 11, 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" 
+rule "#4618 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 == 2, c1 <= 10.5, c2 > 3.0, c5 > 4.0, c4 > 3.5, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1753 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#4656 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4657 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 6, 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" 
+rule "#4658 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 > 2.5, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 5, 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" 
+rule "#4670 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 12, c1 == 6, 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" 
+rule "#4675 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)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 12, c1 == 1, 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" 
+rule "#4677 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 11, c1 == 12, 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" 
+rule "#4688 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 <= 11.5, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 11, c1 == 1, 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" 
+rule "#4689 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, c5 > 1.5, c1 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 10, c1 == 13, 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" 
+rule "#4718 poker_hand = 2 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, c5 > 1.0, c1 > 1.5, c2 <= 12.5, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4779 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 11, 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" 
+rule "#4780 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 == 3, c3 <= 9.5, c5 > 1.0, c1 > 1.5, c2 <= 12.5, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4808 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4810 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 5, c1 == 5, 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" 
+rule "#4832 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, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4833 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 7, 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" 
+rule "#4836 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 4, 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" 
+rule "#4865 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 2, c1 == 13, 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" 
+rule "#4866 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, c5 <= 11.5, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 2, c1 == 12, 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" 
+rule "#4871 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 2, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4873 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 2, c1 == 5, 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" 
+rule "#4890 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 1, s3 == 4, c1 == 1, 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" 
+rule "#4893 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 1, s3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4911 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 11, c3 == 10, 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" 
+rule "#4933 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, c1 > 1.0, c2 <= 10.5, c3 <= 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 9, c2 == 2, 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" 
+rule "#4940 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 == 1, c4 > 10.0, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4942 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 8, c2 == 6, 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" 
+rule "#4973 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 > 1.0, c5 > 7.5, c3 > 2.0, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 13, 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" 
+rule "#4976 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, c3 <= 10.0, c4 <= 11.0, c2 > 5.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5012 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 3, c3 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5016 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 3, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5043 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 7, 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" 
+rule "#5092 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, c2 <= 12.0, c4 > 3.0, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 8, 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" 
+rule "#5093 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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 7, 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" 
+rule "#5110 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, c2 > 2.0, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 2, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5144 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 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" 
+rule "#5146 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, c2 <= 9.5, c1 <= 9.0, c5 <= 4.5, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 3, 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" 
+rule "#5152 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, c2 <= 10.5, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5158 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 11, c3 == 4, 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" 
+rule "#5161 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, c1 <= 10.0, c2 <= 10.5, c3 > 5.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 11, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5167 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 10, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5168 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5200 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 8, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5201 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 8, c3 == 12, 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" 
+rule "#5234 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 == 2, c5 <= 11.5, c2 > 1.0, c3 > 4.0, c4 <= 9.0, c1 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5237 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5251 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 5, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5254 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5260 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5262 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 3, 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(c4 == 12, c5 == 6, c1 == 3, c3 == 12, 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" 
+rule "#5309 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 == 2, c5 <= 11.5, c2 > 1.0, c3 > 4.0, c4 > 9.0, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5325 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5346 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 2, c2 == 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(c4 == 12, c5 == 6, c1 == 2, c2 == 4, 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" 
+rule "#5354 poker_hand = 0 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 <= 10.5, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5355 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5386 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5387 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 1, 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" 
+rule "#5391 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 == 3, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 13, c2 == 10, 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" 
+rule "#5394 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 == 2, c2 <= 12.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 13, c2 == 7, 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" 
+rule "#5398 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 13, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5400 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5419 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 12, c1 == 7, 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" 
+rule "#5421 poker_hand = 2 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5426 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5438 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5440 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 10, s4 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5450 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 9, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5452 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5454 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 9, c2 == 2, 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" 
+rule "#5459 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, c5 <= 12.0, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5496 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 7, c1 == 10, 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" 
+rule "#5497 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 7, c1 == 9, 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" 
+rule "#5542 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, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 6, c1 == 1, 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" 
+rule "#5548 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 == 4, c4 > 3.0, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 9, 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" 
+rule "#5549 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 == 4, c4 > 3.0, c1 > 3.0, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 8, 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" 
+rule "#5600 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 == 1, c5 > 1.5, c4 > 6.5, c3 > 1.0, c1 > 2.5, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 2, c1 == 7, 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" 
+rule "#5605 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 > 8.5, c3 > 2.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 2, c1 == 2, 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" 
+rule "#5625 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, c3 <= 9.5, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 7, 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" 
+rule "#5627 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 == 4, c3 > 1.0, c4 > 7.5, c1 <= 13, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5640 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 13, c2 == 5, 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" 
+rule "#5659 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 == 4, c4 > 6.0, c5 <= 8.0, c1 > 5.0, c3 > 1.0, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 11, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5689 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5695 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5717 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 8, c2 == 8, 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" 
+rule "#5719 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 == 4, c4 > 6.0, c5 > 8.0, c2 <= 8.5, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 8, c2 == 6, 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" 
+rule "#5761 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, c1 > 2.0, c3 > 5.5, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 1, 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" 
+rule "#5787 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 == 1, c1 > 1.5, c4 > 9.0, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 5, c2 == 13, 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" 
+rule "#5831 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 == 3, c4 > 3.0, c1 <= 12.5, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 3, c3 == 7, 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" 
+rule "#5849 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, c5 <= 13, c1 <= 9.0, c3 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 3, c3 == 1, 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" 
+rule "#5855 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, c5 <= 13, c1 > 9.0, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 2, c2 == 8, 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" 
+rule "#5856 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5875 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5878 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 1, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5886 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5912 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 13, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5938 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 11, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5941 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 11, c2 == 10, 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" 
+rule "#6005 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, c1 > 4.5, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 8, 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" 
+rule "#6019 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, c4 > 6.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 6, 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" 
+rule "#6021 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)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6022 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 3, 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" 
+rule "#6023 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, c3 <= 11.0, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6024 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6041 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6061 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6062 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 7, c1 == 13, c2 == 13, 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" 
+rule "#6080 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, c4 <= 9.5, c1 > 1.5, c3 > 3.5, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 7, c1 == 7, 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" 
+rule "#6081 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 > 1.5, c3 > 1.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 7, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6103 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6106 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 6, 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" 
+rule "#6108 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, c1 <= 8.0, c3 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6133 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6135 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 5, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6141 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6148 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6154 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 3, c2 == 9, 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" 
+rule "#6157 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, c2 > 1.5, c5 > 1.5, c1 > 2.0, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 3, c2 == 6, 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" 
+rule "#6162 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 == 3, c1 > 6.5, c2 > 1.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 3, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6181 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6203 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 13, c2 == 11, 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" 
+rule "#6233 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 > 3.0, c3 <= 4.5, c1 <= 11.5, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 12, c2 == 6, 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" 
+rule "#6240 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, c2 > 1.0, c1 <= 5.5, c4 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 11, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6271 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 11, c2 == 5, 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" 
+rule "#6284 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 10, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6292 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6324 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 2, 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" 
+rule "#6340 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, c2 > 3.0, c5 > 9.5, c1 > 3.5, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 7, c2 == 12, 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" 
+rule "#6368 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, c1 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 9, 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" 
+rule "#6374 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 == 3, c3 > 1.0, c1 > 1.0, c2 > 10.0, c4 <= 8.0, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 3, 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" 
+rule "#6389 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 == 3, c3 > 1.0, c1 > 1.0, c2 > 10.0, c4 > 8.0, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 5, c2 == 1, 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" 
+rule "#6390 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 4, c3 == 13, 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" 
+rule "#6397 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, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 4, c3 == 6, 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" 
+rule "#6418 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, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 10, 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" 
+rule "#6426 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 == 2, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6441 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 1, c2 == 13, 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" 
+rule "#6443 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, c3 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 1, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6495 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 9, 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" 
+rule "#6522 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)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 7, 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(c4 == 12, c5 == 1, c1 == 10, c3 == 10, 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" 
+rule "#6550 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 10, c3 == 7, 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" 
+rule "#6553 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 10, c3 == 4, 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" 
+rule "#6575 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6612 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 6, c2 == 9, 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" 
+rule "#6624 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, c2 > 4.5, c1 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 5, c2 == 10, 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" 
+rule "#6631 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, c4 > 5.0, c5 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 5, c2 == 6, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6672 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 3, c2 == 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" 
+rule "#6674 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 == 4, c1 <= 13, c2 > 3.5, c4 > 2.0, c3 > 3.5, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 3, c2 == 10, 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" 
+rule "#6678 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 == 2, c5 > 2.5, c1 > 1.5, c4 > 2.0, c2 > 3.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 3, c2 == 6, 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" 
+rule "#6685 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 == 1, c2 > 2.0, c3 <= 12.0, c1 > 3.0, c4 > 5.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 12, 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" 
+rule "#6704 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, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6708 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 1, 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" 
+rule "#6716 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6738 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6739 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6742 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6744 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6746 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6761 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 11, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6776 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6842 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 5, 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" 
+rule "#6844 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 == 2, c1 <= 11.5, c2 > 2.5, c4 <= 11.0, c3 <= 10.5, c5 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 3, 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" 
+rule "#6845 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 == 1, c1 > 2.0, c4 > 3.0, c3 > 12.5, c2 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6847 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6867 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 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" 
+rule "#6868 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 == 2, c5 > 10.5, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6869 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6885 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 8, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6907 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 6, c2 == 3, c3 == 13, 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" 
+rule "#6937 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 == 4, c1 > 2.0, c2 > 1.0, c3 <= 12.5, c4 <= 12.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6947 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6955 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 4, c3 == 5, 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" 
+rule "#6963 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 == 1, c2 > 1.0, c3 > 9.0, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 3, c2 == 10, 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" 
+rule "#6964 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, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 3, c2 == 9, 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" 
+rule "#6976 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, c4 > 5.5, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6985 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 2, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6993 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 1, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6997 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7006 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7014 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7045 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 4, 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" 
+rule "#7105 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 7, 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" 
+rule "#7107 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 == 1, c3 > 3.0, c4 <= 9.0, c1 <= 8.0, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 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" 
+rule "#7135 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, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 2, 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" 
+rule "#7137 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 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 13, 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" 
+rule "#7138 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 == 2, c5 <= 11.0, c2 <= 12.0, c3 > 2.5, c4 <= 12.5, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 12, 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" 
+rule "#7167 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7193 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 6, 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" 
+rule "#7210 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, c3 > 1.0, c1 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 1, 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" 
+rule "#7229 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 == 3, c5 > 2.0, c3 <= 7.5, c4 > 10.5, c1 <= 12.5, c2 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 5, c1 == 7, 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" 
+rule "#7235 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 == 3, c5 > 2.0, c3 > 7.5, c4 <= 11.5, c2 > 10.0, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 5, c1 == 1, 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" 
+rule "#7238 poker_hand = 3 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, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7244 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7247 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 4, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7264 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 2, c1 == 11, 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" 
+rule "#7269 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, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 2, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7308 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7311 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 1, 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" 
+rule "#7329 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 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 12, c1 == 9, 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" 
+rule "#7332 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, c4 > 1.5, c2 > 2.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 12, c1 == 6, 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" 
+rule "#7382 poker_hand = 2 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, c1 > 1.0, c2 <= 13, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 8, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7392 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 6, c2 == 12, 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" 
+rule "#7427 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)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7428 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7468 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7473 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7511 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7537 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 6, 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" 
+rule "#7558 poker_hand = 2 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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7566 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 11, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7576 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7577 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7582 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 12, 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" 
+rule "#7638 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 6, 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" 
+rule "#7659 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, c3 > 3.0, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 6, c3 == 10, 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" 
+rule "#7680 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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 5, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7696 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7703 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7717 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7733 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7747 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 9, 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" 
+rule "#7749 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 == 1, c5 > 1.0, c3 <= 11.0, c4 > 2.0, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7768 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 2, c1 == 13, 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" 
+rule "#7783 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 == 1, c5 > 1.0, c3 <= 11.0, c4 > 2.0, c1 > 4.0, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 2, c1 == 10, 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" 
+rule "#7812 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, c2 > 2.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 1, c1 == 6, 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" 
+rule "#7835 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, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7836 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 7, 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" 
+rule "#7841 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 2, 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" 
+rule "#7847 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.5, c1 > 5.0, c2 > 2.5, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 12, c1 == 9, 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" 
+rule "#7860 poker_hand = 2 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 <= 9.5, c4 > 2.0, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7867 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 11, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7885 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 9, 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(c4 == 11, c5 == 9, c2 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7929 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 1, 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" 
+rule "#7939 poker_hand = 2 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7960 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 8, 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" 
+rule "#7978 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 == 3, c3 > 8.0, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 2, 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" 
+rule "#8001 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 <= 11.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 6, c1 == 5, 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" 
+rule "#8006 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, c3 > 3.5, c1 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8007 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 5, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8011 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8016 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 5, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8037 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8061 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 3, c3 == 8, 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" 
+rule "#8105 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, c4 <= 12.0, c2 > 2.5, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8114 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8132 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 13, s4 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8137 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 12, c2 == 11, 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" 
+rule "#8139 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, c4 <= 12.0, c2 > 2.5, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 12, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8172 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 11, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8177 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 10, c3 == 9, 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(c4 == 11, c5 == 8, c1 == 10, c3 == 8, 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" 
+rule "#8194 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 9, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8201 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 8, s5 == 2, c2 == 13, 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" 
+rule "#8214 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 8, s5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8228 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 13, 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" 
+rule "#8246 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 == 1, c4 > 1.0, c1 <= 10.0, c5 > 1.0, c3 <= 10.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 7, 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" 
+rule "#8249 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 == 1, c4 > 1.0, c1 <= 10.0, c5 > 1.0, c3 <= 10.0, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 4, 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" 
+rule "#8256 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 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 10, 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" 
+rule "#8271 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 == 1, c3 > 6.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 7, 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" 
+rule "#8273 poker_hand = 2 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, c4 > 4.0, c1 > 5.5, c2 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8296 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 4, c2 == 7, 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" 
+rule "#8314 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 > 2.5, c1 > 7.5, c2 > 1.5, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 4, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8318 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 3, c2 == 10, 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" 
+rule "#8324 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, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 3, c2 == 4, 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" 
+rule "#8340 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 == 1, c4 > 1.0, c2 > 4.5, c1 > 6.5, c5 > 1.5, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8352 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 2, c2 == 1, 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" 
+rule "#8357 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, c4 > 2.0, c3 > 1.5, c2 > 3.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 1, c2 == 9, 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" 
+rule "#8413 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, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 12, c2 == 13, c3 == 3, 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" 
+rule "#8417 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, c1 > 2.5, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 12, c2 == 11, 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" 
+rule "#8422 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)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 12, c2 == 6, 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" 
+rule "#8427 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 <= 9.0, c4 <= 9.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 12, c2 == 1, 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" 
+rule "#8434 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, c3 > 3.0, c5 > 3.5, c1 <= 4.0, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 8, 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" 
+rule "#8480 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 == 3, c4 <= 7.5, c3 > 3.0, c5 > 3.5, c1 > 4.0, c2 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 11, 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(c4 == 11, c5 == 7, c1 == 9, c2 == 6, 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" 
+rule "#8540 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, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 8, s2 == 3, 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" 
+rule "#8542 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 8, s2 == 1, 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" 
+rule "#8543 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 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 7, c3 == 13, 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" 
+rule "#8546 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 <= 11.5, c3 > 4.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 7, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8556 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 6, c2 == 13, 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" 
+rule "#8563 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, c1 > 1.0, c2 > 3.0, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8570 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 12, 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" 
+rule "#8579 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 == 2, c3 <= 11.5, c2 > 2.0, c4 > 3.0, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 3, 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" 
+rule "#8594 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 13, 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" 
+rule "#8595 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 == 2, c2 > 1.0, c1 > 1.0, c5 > 1.5, c3 > 1.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 12, 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" 
+rule "#8613 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 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8614 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8616 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8623 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8624 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8628 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8661 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 1, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8678 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 1, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8686 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8692 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 13, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8696 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 12, 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" 
+rule "#8699 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8724 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 9, 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" 
+rule "#8745 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 == 3, c2 > 1.0, c3 <= 5.0, c1 > 5.5, c5 > 1.0, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 10, c3 == 1, 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" 
+rule "#8755 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, c1 > 5.0, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 9, c2 == 4, 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" 
+rule "#8756 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 9, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8759 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 8, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8780 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 7, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8790 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 6, c3 == 8, 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" 
+rule "#8803 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 == 2, c3 <= 12.0, c4 <= 6.0, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 8, 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" 
+rule "#8804 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, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 7, 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" 
+rule "#8824 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, c5 <= 7.0, c1 > 2.0, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 4, c2 == 12, 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" 
+rule "#8826 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, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 4, c2 == 10, 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" 
+rule "#8830 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 == 3, c1 > 1.0, c3 <= 7.5, c2 <= 6.5, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 4, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8835 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 4, c2 == 1, 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" 
+rule "#8837 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8895 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 1, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8913 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 11, 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" 
+rule "#8929 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, c3 <= 11.5, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 7, 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" 
+rule "#8935 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)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 3, s1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8971 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 12, c1 == 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" 
+rule "#8977 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 == 2, c1 > 2.0, c2 > 3.5, c3 > 2.5, c5 > 3.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 11, c1 == 12, 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" 
+rule "#8982 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, c4 > 2.5, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 11, c1 == 7, 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" 
+rule "#9004 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9008 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 6, 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" 
+rule "#9009 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, c2 <= 12.0, c1 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 5, 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" 
+rule "#9012 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 == 1, c4 <= 8.0, c2 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 2, 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" 
+rule "#9034 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 == 4, c2 > 1.0, c3 <= 12.5, c4 > 1.5, c5 > 1.0, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 9, c1 == 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" 
+rule "#9066 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 > 2.0, c4 <= 12.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 7, c2 == 11, 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" 
+rule "#9072 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 == 1, c3 <= 12.0, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 7, c2 == 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" 
+rule "#9073 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 7, c2 == 4, 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" 
+rule "#9078 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 == 3, c4 <= 10.0, c1 > 3.0, c5 > 2.0, c2 > 3.0, c3 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 12, 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" 
+rule "#9115 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, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 5, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9137 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 5, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9138 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 5, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9140 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 4, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9145 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 4, c1 == 7, 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" 
+rule "#9148 poker_hand = 2 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, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9169 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 3, c2 == 8, 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" 
+rule "#9170 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 3, c2 == 7, 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" 
+rule "#9196 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 == 3, c5 > 4.5, c4 <= 12.5, c1 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 7, 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" 
+rule "#9226 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 == 3, c5 > 4.5, c4 <= 12.5, c1 > 5.0, c2 <= 9.5, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 1, 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" 
+rule "#9232 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, c4 <= 7.5, c2 > 4.0, c3 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 13, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9238 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 13, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9244 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 12, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9250 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 12, c2 == 3, 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" 
+rule "#9268 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 11, s4 == 1, 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" 
+rule "#9272 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 == 1, c1 <= 11.0, c3 > 10.5, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 10, c2 == 10, 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" 
+rule "#9273 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 == 1, c1 > 11.0, c3 > 3.5, c2 > 4.0, c4 > 5.0, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 10, c2 == 9, 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" 
+rule "#9282 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, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9286 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 9, 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" 
+rule "#9341 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, c5 <= 4.0, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 3, 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" 
+rule "#9356 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, c4 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 7, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9358 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 7, c3 == 11, 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" 
+rule "#9359 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 7, c3 == 10, 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" 
+rule "#9360 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, c5 <= 11, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 7, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9362 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 7, c3 == 7, 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" 
+rule "#9368 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, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 7, c3 == 1, 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" 
+rule "#9372 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 == 2, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9421 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9461 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 3, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9522 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9539 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 12, c1 == 6, 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(c4 == 11, c5 == 3, c3 == 12, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9567 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 11, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9572 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 10, c1 == 11, 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" 
+rule "#9573 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)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9575 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 10, c1 == 8, 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" 
+rule "#9598 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)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9620 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 8, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9625 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 8, c1 == 8, 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" 
+rule "#9632 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 == 3, c2 > 7.0, c1 <= 11.5, c3 > 4.0, c5 > 7.5, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 8, c1 == 1, 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" 
+rule "#9660 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, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 6, c1 == 11, 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" 
+rule "#9662 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
 	 when
-		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c2 > 2.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 6, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9668 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 6, c1 == 3, 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" 
+rule "#9672 poker_hand = 0 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 > 3.5, c3 > 5.0, c5 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9703 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 5, 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" 
+rule "#9709 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 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9712 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 4, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9721 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 3, c2 == 13, 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" 
+rule "#9723 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9724 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 3, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9733 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9757 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9758 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 1, 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" 
+rule "#9774 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, c2 > 1.5, c3 > 1.0, c1 > 2.0, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 13, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9785 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 12, s5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9796 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 12, s5 == 2, c1 == 4, 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" 
+rule "#9806 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 == 4, c3 <= 12.5, c4 > 1.0, c1 <= 11.5, c2 > 1.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 12, 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" 
+rule "#9811 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, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 7, 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" 
+rule "#9839 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, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9848 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 9, c1 == 7, 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" 
+rule "#9851 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 9, c1 == 4, 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" 
+rule "#9854 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, c4 > 3.5, c5 > 3.5, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 9, c1 == 1, 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" 
+rule "#9856 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 == 1, c5 <= 4.0, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9862 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 8, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9864 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 8, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9872 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9889 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9892 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 1, 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" 
+rule "#9907 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 == 3, c3 <= 12.0, c1 > 3.0, c2 > 2.0, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 7, c2 == 5, 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" 
+rule "#9916 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 == 3, c3 <= 12.0, c1 > 3.0, c2 > 2.0, c5 > 4.0, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 2, 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" 
+rule "#9936 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 == 3, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 7, 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" 
+rule "#9958 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, c3 <= 9.5, c2 > 1.0, c4 > 3.0, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 4, c1 == 10, 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" 
+rule "#9969 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9999 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 2, c2 == 7, 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" 
+rule "#10005 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, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 2, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10028 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 1, c1 == 3, 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" 
+rule "#10033 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 13, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10048 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 12, c3 == 9, 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" 
+rule "#10069 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 == 3, c4 > 3.5, c1 > 1.5, c2 > 3.0, c3 > 1.5, c5 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10077 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 10, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10099 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 9, 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" 
+rule "#10102 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 == 4, c3 <= 12.0, c5 > 10.0, c1 > 5.5, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 6, 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" 
+rule "#10117 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 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 3, 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" 
+rule "#10120 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, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 8, c2 == 13, 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" 
+rule "#10127 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 8, c2 == 6, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10140 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 8, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10143 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 8, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10148 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 7, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10157 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 7, c3 == 1, 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" 
+rule "#10159 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, c4 > 8.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 12, 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" 
+rule "#10162 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 9, 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" 
+rule "#10164 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 7, 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" 
+rule "#10183 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, c1 <= 8.0, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 13, 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" 
+rule "#10202 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, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7169 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#10203 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 == 3, c3 > 11.0, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 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" 
+rule "#10207 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 == 4, c1 > 1.0, c4 > 8.0, c5 <= 11.5, c2 > 1.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 1, 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" 
+rule "#10221 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 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 4, c2 == 12, 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" 
+rule "#10232 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, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 4, c2 == 1, 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" 
+rule "#10264 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 7, 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" 
+rule "#10282 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 1, 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" 
+rule "#10314 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, c5 > 2.5, c1 > 4.5, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 13, c2 == 7, 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" 
+rule "#10318 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 13, c2 == 3, 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" 
+rule "#10340 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 == 4, c1 <= 9.0, c5 > 4.0, c2 > 3.0, c3 > 3.0, c4 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 10, 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" 
+rule "#10384 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 == 4, c1 > 9.0, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 10, c2 == 3, 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" 
+rule "#10386 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 == 2, c2 > 6.0, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 10, c2 == 1, 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" 
+rule "#10438 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, c4 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 8, c1 == 11, 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" 
+rule "#10451 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, c2 <= 13, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10475 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 12, 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" 
+rule "#10502 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10505 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 6, 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" 
+rule "#10521 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 == 1, c3 <= 9.5, c2 > 3.5, c5 > 5.0, c1 > 3.0, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10529 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10535 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10538 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 4, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10564 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10580 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 10, 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" 
+rule "#10581 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 9, 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" 
+rule "#10612 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, c1 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10641 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 11, 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" 
+rule "#10642 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, c5 > 4.0, c2 > 4.5, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 10, 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" 
+rule "#10658 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, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10691 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 12, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10693 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 12, c5 == 8, 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" 
+rule "#10695 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 12, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10700 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 12, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10728 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 10, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10733 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10739 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 9, s1 == 4, 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" 
+rule "#10741 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, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 9, s1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10745 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 9, s1 == 1, s3 == 1, 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" 
+rule "#10749 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, c4 > 5.0, c2 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10751 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10780 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 4, 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" 
+rule "#10798 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 11, 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" 
+rule "#10826 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 5, c1 == 8, 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" 
+rule "#10831 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 5, c1 == 3, 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" 
+rule "#10849 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 > 3.0, c5 > 5.0, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 10, 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" 
+rule "#10868 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 > 3.0, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 3, 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" 
+rule "#10889 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, c2 > 1.0, c3 > 1.0, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 3, c1 == 7, 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" 
+rule "#10906 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8007 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#10908 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 13, 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" 
+rule "#10939 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 <= 12.0, c3 <= 12.5, c4 > 3.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 6, 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" 
+rule "#10968 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 1, 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" 
+rule "#10969 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 == 3, c5 > 7.5, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 1, s5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10985 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 13, c5 == 13, 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" 
+rule "#10993 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 == 3, c5 > 7.5, c3 > 7.5, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 13, c5 == 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" 
+rule "#11017 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 > 6.5, c2 <= 8.5, c5 > 7.0, c3 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 6, 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" 
+rule "#11058 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 == 4, c4 > 1.5, c1 > 3.0, c5 > 1.5, c2 > 5.5, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8163 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#11061 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 == 4, c4 > 1.5, c1 > 3.0, c5 > 1.5, c2 > 5.5, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 12, 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" 
+rule "#11062 poker_hand = 2 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, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11068 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 5, 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" 
+rule "#11075 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, c5 > 6.5, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 11, 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" 
+rule "#11078 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, c1 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11079 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11088 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 11, 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" 
+rule "#11094 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, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 5, 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" 
+rule "#11112 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 7, c1 == 12, 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" 
+rule "#11116 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, c1 <= 8.0, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 7, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11119 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 7, c1 == 5, 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" 
+rule "#11221 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 == 2, c3 <= 12, c2 > 1.0, c5 <= 13, c1 > 8.0, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 4, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11245 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 3, 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" 
+rule "#11248 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 13, 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" 
+rule "#11253 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 8, 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" 
+rule "#11271 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 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11274 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 1, c1 == 12, 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" 
+rule "#11278 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, c4 <= 8.5, c1 > 5.0, c2 > 3.5, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 1, c1 == 8, 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" 
+rule "#11283 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 1, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11284 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11318 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 11, c2 == 7, 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" 
+rule "#11323 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 11, c2 == 2, 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" 
+rule "#11326 poker_hand = 2 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 9, c1 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#8697 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#11339 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 <= 8.0, c4 > 2.0, c3 > 3.5, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11341 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 9, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#11351 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 8, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11374 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 7, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11382 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 6, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11400 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 5, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11411 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11419 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#11423 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11454 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11459 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11466 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11471 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11491 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 1, 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" 
+rule "#11522 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 == 4, c2 > 1.0, c5 > 2.0, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 8, 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" 
+rule "#11560 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, c5 > 4.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 10, c5 == 7, 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" 
+rule "#11567 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, c4 > 4.5, c3 > 2.5, c2 <= 12.0, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 9, c1 == 13, 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" 
+rule "#11573 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 9, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11606 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 11, 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" 
+rule "#11610 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 == 3, c5 <= 12.0, c3 > 2.5, c1 > 1.0, c2 > 7.5, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 7, 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" 
+rule "#11611 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 6, 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" 
+rule "#11612 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, c1 > 1.0, c2 <= 7, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 5, 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" 
+rule "#11618 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11621 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 7, c1 == 9, 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" 
+rule "#11630 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 == 1, c1 <= 8.0, c4 > 2.0, c5 > 1.0, c2 > 1.0, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 13, 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" 
+rule "#11636 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8924 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#11640 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 3, 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" 
+rule "#11647 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 == 1, c2 > 1.5, c5 <= 10.5, c3 > 4.5, c1 > 6.0, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11665 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 5, c1 == 3, 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" 
+rule "#11672 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 9, 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" 
+rule "#11701 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 <= 4.5, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 4, 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" 
+rule "#11702 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, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11704 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 1, 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" 
+rule "#11729 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, c1 > 3.0, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 3, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11731 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 12, 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" 
+rule "#11734 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 9, 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" 
+rule "#11746 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 > 4.5, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 8, c5 == 2, 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" 
+rule "#11776 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 <= 12, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11777 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11779 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 1, 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" 
+rule "#11795 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 10, 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" 
+rule "#11816 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 1, 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" 
+rule "#11821 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, c5 > 7.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 12, c2 == 9, 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" 
+rule "#11854 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 == 3, c1 > 10.5, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 4, 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" 
+rule "#11875 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 == 4, c4 > 8.5, c1 <= 13, c3 <= 11.5, c2 > 1.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11877 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11880 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11900 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11936 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11950 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11953 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 5, 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" 
+rule "#11958 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, c3 > 7.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 6, c1 == 13, 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" 
+rule "#11972 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, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 5, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9170 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#11976 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 == 4, c1 > 2.5, c2 > 1.0, c3 > 1.5, c4 > 7.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 5, c1 == 8, 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" 
+rule "#12039 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 == 4, c1 > 2.5, c2 > 1.0, c3 > 1.5, c4 <= 7.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 2, c2 == 8, 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" 
+rule "#12040 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, c4 > 5.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 2, c2 == 7, 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" 
+rule "#12046 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 2, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12064 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 1, c2 == 8, 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" 
+rule "#12066 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 1, c2 == 6, 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" 
+rule "#12088 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, c2 > 2.5, c3 <= 5.0, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 9, 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" 
+rule "#12105 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, c2 > 2.5, c3 > 5.0, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 6, 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" 
+rule "#12121 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 == 3, c2 > 1.0, c5 <= 12.5, c1 <= 8.0, c3 > 2.5, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12129 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12151 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 10, 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" 
+rule "#12158 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, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 3, 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" 
+rule "#12161 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 == 4, c2 <= 12.0, c5 > 1.0, c4 <= 8.0, c1 > 7.5, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9347 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#12181 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, c3 <= 7.0, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12196 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12227 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 6, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12231 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 6, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12239 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 5, c5 == 10, 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" 
+rule "#12244 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 > 11.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 5, c5 == 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" 
+rule "#12270 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.5, c4 > 4.0, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 3, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12272 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 3, c5 == 3, 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" 
+rule "#12289 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 == 1, c4 <= 3.0, c2 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 1, s5 == 4, s3 == 3, 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" 
+rule "#12292 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, c3 > 3.0, c2 <= 12.5, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 1, s5 == 3, 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" 
+rule "#12294 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 == 2, c3 > 2.0, c1 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 1, s5 == 1, 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" 
+rule "#12321 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 > 3.5, c2 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 11, c2 == 13, 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" 
+rule "#12342 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, c3 > 2.5, c2 <= 11.0, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 10, c2 == 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" 
+rule "#12352 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, c3 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 9, c2 == 8, 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" 
+rule "#12359 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 == 2, c2 > 1.5, c1 > 4.0, c4 <= 8.0, c3 > 3.0, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 9, c2 == 1, 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" 
+rule "#12374 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 8, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12375 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 8, c5 == 10, 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" 
+rule "#12383 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 8, c5 == 2, 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" 
+rule "#12385 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, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 13, 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" 
+rule "#12413 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 6, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12424 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 13, 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" 
+rule "#12463 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12465 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12473 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12478 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12479 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 8, 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" 
+rule "#12480 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 7, 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" 
+rule "#12483 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, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12499 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12519 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12520 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12523 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 1, 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" 
+rule "#12535 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 > 1.5, c3 > 1.0, c4 > 4.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 13, c1 == 2, 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" 
+rule "#12557 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, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 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" 
+rule "#12572 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 == 1, c3 > 1.0, c1 > 2.5, c2 <= 12, c4 > 4.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 2, 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" 
+rule "#12573 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 == 1, c1 <= 12.5, c3 <= 5.5, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 1, 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" 
+rule "#12574 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 11, c1 == 13, 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" 
+rule "#12578 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, c1 <= 9.0, c3 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 11, c1 == 9, 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" 
+rule "#12588 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 10, c1 == 12, 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" 
+rule "#12591 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 10, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12592 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 10, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12602 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 11, 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" 
+rule "#12629 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 9, 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" 
+rule "#12632 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 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 6, 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" 
+rule "#12663 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 7, c1 == 12, 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" 
+rule "#12665 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 7, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12666 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 7, c1 == 9, 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" 
+rule "#12672 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, c5 > 2.0, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 7, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12673 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 7, c1 == 2, 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" 
+rule "#12680 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 <= 8.0, c3 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 6, c2 == 8, 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" 
+rule "#12693 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 == 1, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 5, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12720 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 4, c1 == 6, 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" 
+rule "#12722 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, c2 > 2.0, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12727 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 3, c1 == 12, 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" 
+rule "#12733 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 == 1, c1 > 9.0, c3 > 6.0, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 3, c1 == 6, 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" 
+rule "#12737 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 == 4, c1 > 2.0, c4 <= 9.5, c2 > 1.0, c3 > 3.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 3, c1 == 2, 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" 
+rule "#12749 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 > 7.0, c4 > 2.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 2, c2 == 3, 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" 
+rule "#12750 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, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 2, c2 == 2, 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" 
+rule "#12761 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, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 1, c2 == 4, 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" 
+rule "#12783 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 > 1.5, c3 > 2.0, c5 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10299 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+rule "#12789 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 1, 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" 
+rule "#12791 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 == 2, c3 <= 12.0, c4 <= 5.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 12, 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" 
+rule "#12795 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, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 8, 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" 
+rule "#12796 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 7, 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" 
+rule "#12815 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 11, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12818 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 11, c1 == 10, 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" 
+rule "#12823 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 11, c1 == 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" 
+rule "#12824 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 11, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12835 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 10, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12840 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 10, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12841 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 9, c1 == 13, 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" 
+rule "#12849 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 == 1, c1 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3 poker_hand = 5 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#12854 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 == 4, c5 <= 12.5, c3 <= 12.0, c2 <= 11.5, c1 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6 poker_hand = 5 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#12861 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 == 4, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#12893 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 7, c5 == 11, 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" 
+rule "#12909 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 == 2, c5 > 1.5, c2 <= 5.5, c1 <= 13, c3 <= 13, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12947 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12948 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 5, 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" 
+rule "#12952 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, c2 > 2.5, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 1, 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" 
+rule "#13005 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13028 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 12, 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" 
+rule "#13044 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 == 3, c1 > 4.5, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 8, 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" 
+rule "#13049 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13051 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 1, 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" 
+rule "#13081 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 2, c1 == 8, 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" 
+rule "#13090 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 1, s3 == 3, 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" 
+rule "#13091 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 == 3, c5 > 2.0, c2 <= 6.0, c1 > 8.0, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 1, s3 == 2, 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" 
+rule "#13124 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 13, c1 == 6, 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" 
+rule "#13152 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 <= 3.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 12, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13157 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13177 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13183 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 9, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13184 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 9, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13189 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 9, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13193 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 9, c1 == 1, 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" 
+rule "#13212 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 <= 11.0, c3 > 5.5, c4 > 3.5, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 7, 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" 
+rule "#13230 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 <= 11.0, c3 <= 5.5, c4 <= 11.5, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 1, 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" 
+rule "#13234 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13249 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13256 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 13, 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" 
+rule "#13260 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, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13266 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 3, 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" 
+rule "#13268 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 1, 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" 
+rule "#13289 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, c5 > 7.5, c1 > 8.5, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 4, c2 == 6, 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" 
+rule "#13290 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 4, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13330 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 2, 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" 
+rule "#13331 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 == 2, c5 <= 7.0, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13335 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13336 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 2, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13344 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 2, c2 == 1, 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" 
+rule "#13360 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13366 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 4, c2 == 13, 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" 
+rule "#13391 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 4, 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" 
+rule "#13407 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.5, c3 <= 11.5, c2 > 2.0, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 12, c2 == 13, 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" 
+rule "#13411 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 == 2, c3 <= 6.0, c1 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 12, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13413 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 12, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13419 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 12, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13432 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13433 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 10, c1 == 13, 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" 
+rule "#13435 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 == 2, c3 > 6.0, c1 > 8.5, c5 <= 9.5, c2 <= 9.0, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 10, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13442 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13467 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 4, 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" 
+rule "#13510 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 == 2, c3 > 6.0, c1 > 8.5, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 11, 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" 
+rule "#13511 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, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 10, 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" 
+rule "#13518 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, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 8, c2 == 8, 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" 
+rule "#13531 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, c4 <= 6.5, c3 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13550 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 6, c1 == 8, 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" 
+rule "#13551 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 > 5.5, c2 <= 4.5, c1 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 6, c1 == 7, 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" 
+rule "#13559 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 > 5.5, c2 > 4.5, c1 > 4.0, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 5, c1 == 12, 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" 
+rule "#13565 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 5, c1 == 6, 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" 
+rule "#13566 poker_hand = 2 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 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13573 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13580 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 4, 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" 
+rule "#13587 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 3, c1 == 10, 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" 
+rule "#13588 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, c1 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 3, c1 == 9, 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" 
+rule "#13597 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13603 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13635 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 4, 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" 
+rule "#13648 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 == 3, c1 <= 12.5, c5 > 2.5, c4 > 1.0, c2 <= 3.0, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 12, c1 == 9, 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" 
+rule "#13658 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13661 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 7, 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" 
+rule "#13663 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, c5 <= 8.0, c2 > 3.0, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13664 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13717 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 9, c1 == 1, 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" 
+rule "#13734 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 > 8.0, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13761 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 7, 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" 
+rule "#13784 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 6, c1 == 9, 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" 
+rule "#13793 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13794 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 5, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13802 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13809 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 10, 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" 
+rule "#13813 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13863 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 3, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13868 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 2, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13911 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 7, 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" 
+rule "#13917 poker_hand = 3 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, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#13919 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 12, 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" 
+rule "#13938 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 == 3, c2 <= 13, c3 > 6.5, c1 > 4.0, c4 > 6.0, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#615 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#13941 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 == 2, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 2, 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" 
+rule "#13944 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 == 4, c2 > 1.0, c3 <= 10.5, c1 <= 6.5, c4 > 6.5, c5 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 12, 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" 
+rule "#13947 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 == 4, c2 > 1.0, c3 > 10.5, c1 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13949 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 7, 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" 
+rule "#13964 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 > 1.0, c2 <= 12.5, c3 > 2.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 4, 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" 
+rule "#13981 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 == 1, c1 > 1.5, c5 > 6.5, c4 <= 8.5, c3 > 1.0, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 11, c1 == 12, 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" 
+rule "#13993 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 == 4, c1 > 3.0, c4 > 4.0, c2 > 7.5, c3 <= 9.0, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 10, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13997 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 10, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14012 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14016 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14020 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 8, s1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14037 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 6, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14045 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 6, c1 == 4, 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" 
+rule "#14049 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 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 5, c1 == 13, 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" 
+rule "#14123 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, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14141 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14152 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 1, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14169 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 12, c3 == 7, 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" 
+rule "#14190 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 == 1, c3 <= 6.0, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 9, 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" 
+rule "#14191 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 8, 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" 
+rule "#14205 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 == 1, c5 <= 3.0, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 6, 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" 
+rule "#14222 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, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 1, 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" 
+rule "#14224 poker_hand = 3 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#14235 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 12, c3 == 1, 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" 
+rule "#14258 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 == 1, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 11, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14282 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14284 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14285 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14291 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 9, c1 == 8, 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" 
+rule "#14339 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 7, c3 == 10, 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" 
+rule "#14359 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, c3 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 6, c1 == 3, 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" 
+rule "#14378 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, c2 <= 13, c3 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 4, c1 == 10, 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" 
+rule "#14382 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, c2 <= 13, c3 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 4, c1 == 6, 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" 
+rule "#14403 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 3, c1 == 10, 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" 
+rule "#14421 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 3, c1 == 4, 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" 
+rule "#14431 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 == 2, c2 > 6.0, c4 <= 10.0, c1 > 1.0, c3 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 7, 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" 
+rule "#14446 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#914 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#14449 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14467 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 8, 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" 
+rule "#14490 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 10, 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" 
+rule "#14491 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, c5 > 2.0, c4 <= 9.5, c2 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 9, 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" 
+rule "#14510 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 == 1, c3 > 1.0, c5 <= 12.5, c2 <= 11.5, c4 <= 11.0, c1 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 2, 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" 
+rule "#14519 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 == 4, c2 <= 5.0, c1 <= 11.0, c3 > 1.5, c4 > 7.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 12, c3 == 6, 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" 
+rule "#14520 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 == 4, c2 > 5.0, c1 > 2.0, c3 > 1.0, c5 > 10.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 12, c3 == 5, 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" 
+rule "#14525 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, c2 > 1.0, c1 > 10.0, c5 > 3.0, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 11, c1 == 13, 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" 
+rule "#14527 poker_hand = 3 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#14530 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 11, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14533 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14535 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 11, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14536 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 11, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14538 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 13, 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" 
+rule "#14562 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, c4 > 1.5, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 1, 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" 
+rule "#14568 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 == 2, c5 <= 10.0, c1 <= 10.0, c4 > 1.5, c2 > 1.5, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 9, c3 == 8, 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" 
+rule "#14573 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 9, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1032 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#14575 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 == 2, c4 <= 8.0, c2 > 5.0, c3 <= 8.5, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 9, c3 == 1, 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" 
+rule "#14590 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 == 2, c4 <= 8.0, c2 > 5.0, c3 <= 8.5, c1 > 2.5, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 11, 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" 
+rule "#14591 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 <= 13, c3 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 10, 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" 
+rule "#14594 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 == 1, c5 <= 13, c1 <= 6.0, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1044 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#14613 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 == 1, c5 <= 13, c1 <= 6.0, c2 > 5.0, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 7, c3 == 13, 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" 
+rule "#14625 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, c2 <= 10.0, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 7, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14660 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 2, c1 == 2, 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" 
+rule "#14667 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, c2 <= 3.0, c3 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14668 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 8, 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" 
+rule "#14708 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, c2 > 3.0, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 4, c1 == 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" 
+rule "#14712 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 == 1, c2 <= 4.0, c3 > 5.0, c1 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 4, c1 == 1, 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" 
+rule "#14754 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 == 4, c3 <= 10.0, c5 > 1.0, c1 > 1.5, c2 <= 13, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 9, 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" 
+rule "#14768 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, c2 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1149 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#14778 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 == 3, c2 > 2.0, c1 <= 9.0, c3 > 2.0, c4 > 1.0, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 1, c3 == 10, 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" 
+rule "#14782 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 == 3, c2 > 2.0, c1 > 9.0, c5 > 9.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 1, c3 == 6, 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" 
+rule "#14785 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 1, c3 == 3, 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" 
+rule "#14789 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 13, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1208 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#14795 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 13, c3 == 6, 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" 
+rule "#14800 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, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 13, c3 == 1, 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" 
+rule "#14802 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 12, c3 == 12, 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" 
+rule "#14841 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 == 2, c4 <= 11.5, c3 <= 11.0, c5 > 11.0, c1 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1250 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#14862 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 == 2, c4 <= 11.5, c3 > 11.0, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 1, 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" 
+rule "#14876 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, c5 > 3.0, c3 <= 6, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 9, c2 == 13, 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" 
+rule "#14879 poker_hand = 2 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#14883 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 9, c2 == 6, 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" 
+rule "#14889 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, c1 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 13, 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" 
+rule "#14903 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, c2 <= 11.5, c4 > 1.0, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 11, c2 == 1, 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" 
+rule "#14904 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 10, 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" 
+rule "#14905 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 == 2, c2 <= 12.0, c3 > 1.0, c4 <= 11.5, c1 <= 6.5, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14912 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 2, 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" 
+rule "#14953 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, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 6, c3 == 11, 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" 
+rule "#14999 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 == 4, c1 > 1.5, c3 > 2.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 5, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1345 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#15027 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 == 4, c1 > 1.5, c3 <= 2.0, c2 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 13, c2 == 12, 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" 
+rule "#15041 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 10, 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" 
+rule "#15046 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 > 3.0, c3 > 4.5, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 5, 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" 
+rule "#15048 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 3, 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" 
+rule "#15049 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15053 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 2, c2 == 11, 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" 
+rule "#15056 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 == 4, c1 > 2.0, c2 <= 9.0, c3 > 1.5, c5 > 9.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 2, c2 == 8, 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" 
+rule "#15059 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 == 4, c1 > 2.0, c2 > 9.0, c4 > 6.5, c3 <= 9.0, c5 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 2, c2 == 5, 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" 
+rule "#15086 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 3, 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" 
+rule "#15087 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, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15093 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15118 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 12, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15141 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 12, c2 == 2, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15153 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15158 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 6, 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" 
+rule "#15203 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 8, c2 == 12, 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" 
+rule "#15207 poker_hand = 2 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, c1 > 6.0, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#1516 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#15222 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 > 3.0, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 7, c2 == 6, 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" 
+rule "#15233 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 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 6, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1523 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#15259 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 > 6.0, c3 > 4.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 5, c3 == 7, 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" 
+rule "#15283 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, c2 <= 4.0, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 2, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15287 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15288 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15304 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15307 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 13, c3 == 12, 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" 
+rule "#15308 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, c2 > 4.0, c1 > 3.5, c3 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 13, c3 == 11, 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" 
+rule "#15313 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 == 2, c3 > 2.0, c5 <= 13, c1 > 4.0, c2 > 2.0, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 13, c3 == 6, 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" 
+rule "#15318 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 == 3, c1 > 1.0, c2 > 1.5, c3 <= 12.0, c5 <= 12.5, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 13, c3 == 1, 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" 
+rule "#15335 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, c3 <= 8.5, c5 > 2.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 12, c3 == 9, 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" 
+rule "#15342 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 == 1, c4 <= 3.0, c2 > 2.0, c1 > 3.0, c3 > 3.5, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 12, c3 == 2, 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" 
+rule "#15416 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 <= 12.0, c4 > 2.0, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15417 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15425 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 9, c2 == 6, 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" 
+rule "#15437 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 > 2.0, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 8, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15441 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15464 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 5, 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" 
+rule "#15465 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, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 4, 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" 
+rule "#15472 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15473 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 9, 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" 
+rule "#15531 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 == 2, c5 > 1.0, c3 <= 11.5, c2 <= 11.0, c1 <= 6.0, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 12, 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" 
+rule "#15549 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15571 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 4, c2 == 9, 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" 
+rule "#15576 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, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15585 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15589 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 3, c2 == 4, 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" 
+rule "#15608 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, c2 > 2.5, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 10, 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" 
+rule "#15623 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, c2 > 2.5, c1 > 4.0, c3 <= 8.5, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 1, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15645 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 13, c2 == 11, 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" 
+rule "#15679 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 == 3, c4 > 1.0, c1 > 1.5, c5 <= 12.0, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 12, c2 == 2, 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" 
+rule "#15681 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 == 2, c1 > 10.5, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 11, 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" 
+rule "#15698 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 == 1, c3 > 2.0, c5 > 13, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 8, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15722 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15724 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15732 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 7, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15738 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 6, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15741 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 6, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15745 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 6, c2 == 2, 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" 
+rule "#15766 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 5, c2 == 6, 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" 
+rule "#15768 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 == 4, c3 <= 11.0, c1 <= 6.0, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 5, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15771 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 5, c2 == 1, 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" 
+rule "#15774 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 4, c1 == 11, 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" 
+rule "#15776 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 == 4, c3 <= 11.0, c1 > 6.0, c2 > 5.0, c5 > 3.0, c4 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 4, c1 == 9, 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" 
+rule "#15787 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 == 3, c4 > 1.0, c1 <= 13, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15788 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 3, c2 == 10, 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" 
+rule "#15789 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, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15833 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 4, 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" 
+rule "#15865 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, c4 > 5.5, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 9, 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" 
+rule "#15871 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 == 1, c1 > 4.0, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15877 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15893 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 6, 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" 
+rule "#15899 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, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 10, c1 == 13, 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" 
+rule "#15905 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, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 10, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15907 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15950 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 11, 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" 
+rule "#15951 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, c3 <= 9.0, c2 > 7.0, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 10, 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" 
+rule "#15954 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, c3 <= 9.0, c2 <= 7.0, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 7, 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" 
+rule "#15956 poker_hand = 2 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, c3 > 9.0, c2 > 5.0, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15981 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 8, c3 == 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" 
+rule "#15987 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 == 4, c4 <= 10.0, c1 > 1.0, c2 > 1.0, c3 <= 10.0, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15988 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 7, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15991 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 7, c1 == 8, 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" 
+rule "#16022 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 == 4, c4 <= 10.0, c1 > 1.0, c2 > 1.0, c3 <= 10.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 5, c1 == 3, 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" 
+rule "#16040 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 4, c3 == 10, 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" 
+rule "#16041 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 4, c3 == 9, 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" 
+rule "#16078 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1916 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#16083 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 == 3, c5 > 1.0, c4 > 11.0, c1 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 8, 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" 
+rule "#16193 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 == 2, c4 > 4.0, c1 > 3.0, c2 <= 6.5, c3 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 10, c3 == 11, 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" 
+rule "#16197 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, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 10, c3 == 7, 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" 
+rule "#16210 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, c5 <= 11.5, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 9, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16218 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 8, c3 == 12, 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" 
+rule "#16219 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 == 1, c3 > 1.5, c4 > 2.5, c1 <= 7.0, c2 > 5.0, c5 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 8, c3 == 11, 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" 
+rule "#16231 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 == 4, c3 > 9.0, c2 > 7.0, c1 > 4.5, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 7, c3 == 12, 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" 
+rule "#16241 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 == 2, c3 > 6.5, c2 <= 11.5, c1 <= 7.0, c4 > 3.5, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 7, c3 == 2, 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" 
+rule "#16276 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 6, c3 == 4, 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" 
+rule "#16282 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 == 1, c4 > 10.0, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 11, 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" 
+rule "#16287 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 6, 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" 
+rule "#16289 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16347 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 7, 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" 
+rule "#16362 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 > 1.0, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16364 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 2, 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" 
+rule "#16365 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 > 1.0, c5 > 7.5, c3 > 2.0, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 1, 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" 
+rule "#16369 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 3, c3 == 10, 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" 
+rule "#16373 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 > 4.0, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 3, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16391 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 2, c1 == 1, 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" 
+rule "#16408 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 == 3, c1 > 3.5, c3 > 10.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 9, 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" 
+rule "#16409 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 8, 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" 
+rule "#16434 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, c5 > 2.5, c2 > 3.5, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 13, c2 == 8, 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" 
+rule "#16459 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, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 11, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16473 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 10, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16503 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 9, c2 == 6, 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" 
+rule "#16523 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 8, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16527 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 8, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16531 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16532 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 8, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16533 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 8, c3 == 1, 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" 
+rule "#16560 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 == 4, c5 > 3.5, c2 > 3.0, c1 > 2.5, c3 <= 12.5, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16576 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16577 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16578 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 6, 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" 
+rule "#16590 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 == 3, c1 > 2.0, c5 <= 9.5, c2 > 3.5, c3 > 2.5, c4 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 7, 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" 
+rule "#16624 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 == 3, c1 > 2.0, c5 > 9.5, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16628 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16630 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 3, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16632 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 3, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16634 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16638 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16654 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16720 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16722 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 12, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16731 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 12, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16739 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 10, c3 == 10, 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" 
+rule "#16740 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 == 2, c3 > 3.0, c5 <= 10.5, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 10, c3 == 9, 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" 
+rule "#16746 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 > 5.0, c3 <= 11.5, c5 > 2.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 10, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16748 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 10, c3 == 1, 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" 
+rule "#16751 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 > 5.0, c3 <= 11.5, c5 > 2.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 9, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16760 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 9, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16767 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16769 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 8, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16770 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 8, c3 == 5, 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" 
+rule "#16791 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 6, c3 == 10, 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" 
+rule "#16815 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 5, s2 == 2, 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" 
+rule "#16819 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 4, s2 == 2, 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" 
+rule "#16822 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, c4 <= 12.5, c2 > 1.5, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 2, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16826 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 2, c3 == 9, 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" 
+rule "#16827 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 == 2, c5 <= 11.5, c2 > 1.0, c3 <= 4.0, c1 > 5.5, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 2, c3 == 8, 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" 
+rule "#16852 poker_hand = 0 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, c2 > 1.0, c1 <= 12, c3 > 3.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 1, c3 == 8, 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" 
+rule "#16857 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 1, c3 == 3, 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" 
+rule "#16860 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 == 2, c2 > 1.0, c3 > 1.0, c4 <= 10.5, c5 <= 11, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 13, 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" 
+rule "#16863 poker_hand = 0 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, c5 <= 7.5, c2 <= 11.5, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 10, 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" 
+rule "#16865 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 == 4, c1 > 1.5, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 8, 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" 
+rule "#16883 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 == 3, c4 > 3.5, c1 > 1.5, c5 > 3.0, c2 > 2.5, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 2, 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" 
+rule "#16892 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, c4 <= 12.5, c2 > 9.5, c3 > 6.5, c5 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 6, 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" 
+rule "#16938 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 == 1, c1 > 8.0, c2 > 2.5, c3 > 3.5, c4 > 2.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 9, 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" 
+rule "#16940 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 <= 11, c4 > 2.5, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 7, 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" 
+rule "#16956 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, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16986 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 10, c2 == 10, 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" 
+rule "#16998 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 <= 10.0, c2 > 3.0, c1 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17034 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 8, c2 == 12, 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" 
+rule "#17041 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, c4 <= 8.5, c1 > 2.5, c3 <= 12, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 8, c2 == 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" 
+rule "#17046 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 == 3, c2 <= 11.5, c4 <= 11.0, c1 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 13, 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" 
+rule "#17048 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, c1 > 6.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 11, 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" 
+rule "#17051 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 8, 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" 
+rule "#17066 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 == 1, c3 <= 4.5, c1 > 2.5, c4 <= 4.5, c2 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 5, 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" 
+rule "#17090 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 > 2.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17096 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 13, 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" 
+rule "#17114 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 == 1, c1 <= 9.5, c2 > 4.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 7, 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" 
+rule "#17139 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 == 3, c3 > 13, c1 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 7, 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" 
+rule "#17171 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 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17172 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 3, c3 == 11, 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" 
+rule "#17185 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 2, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17192 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 2, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17209 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 12, 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" 
+rule "#17236 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 13, c3 == 10, 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" 
+rule "#17243 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, c1 <= 10.0, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 13, c3 == 3, 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" 
+rule "#17246 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, c1 > 10.0, c3 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 13, 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" 
+rule "#17279 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 1, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17302 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 6, 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" 
+rule "#17304 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, c4 > 4.5, c2 > 6.0, c3 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 4, 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" 
+rule "#17306 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 == 2, c3 > 10.5, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 2, 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" 
+rule "#17325 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 == 2, c5 > 2.0, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 8, 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" 
+rule "#17326 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 == 1, c2 > 2.0, c1 <= 12.0, c5 > 3.0, c3 > 3.5, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17350 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 9, c3 == 8, 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" 
+rule "#17353 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 == 4, c4 > 3.0, c1 > 3.0, c5 > 4.5, c2 <= 9.0, c3 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 9, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17377 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 6, 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" 
+rule "#17379 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 4, 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" 
+rule "#17398 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 <= 7.5, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 7, c2 == 10, 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" 
+rule "#17421 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 == 1, c5 > 1.5, c4 <= 6.5, c1 > 3.0, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 5, s3 == 4, 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" 
+rule "#17423 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, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 5, s3 == 2, 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" 
+rule "#17461 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17494 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 11, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17503 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 10, 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" 
+rule "#17505 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2727 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#17509 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, c3 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17518 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 13, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17534 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 13, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17536 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 13, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17537 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 13, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17543 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17567 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 11, c2 == 9, 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" 
+rule "#17583 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 <= 8.5, c3 > 2.5, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 11, c2 == 5, 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" 
+rule "#17605 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, c5 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 9, c2 == 12, 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" 
+rule "#17620 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 == 2, c3 <= 10.0, c5 > 3.0, c1 <= 11.0, c2 > 5.5, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 9, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2747 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#17632 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 == 2, c3 > 10.0, c2 > 3.0, c1 > 3.5, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 8, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17633 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17640 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 8, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17643 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 7, c5 == 12, 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" 
+rule "#17648 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 == 1, c4 <= 6.0, c2 > 4.5, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17664 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 6, c2 == 4, 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" 
+rule "#17665 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 == 1, c4 > 6.0, c1 > 2.0, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 6, c2 == 3, 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" 
+rule "#17726 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, c3 > 4.5, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 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" 
+rule "#17749 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, c3 > 4.5, c2 <= 11.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17789 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 4, c2 == 13, 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" 
+rule "#17804 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 == 4, c3 > 1.0, c4 <= 7.5, c2 > 4.0, c1 > 4.0, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17806 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 13, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17817 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 13, c5 == 1, 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" 
+rule "#17836 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 == 3, c3 > 2.0, c1 <= 3.5, c2 > 4.5, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 12, c5 == 7, 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" 
+rule "#17858 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 == 2, c2 > 4.0, c3 > 1.5, c4 <= 8.5, c5 > 2.5, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 10, 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" 
+rule "#17861 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 == 2, c2 > 4.0, c3 > 1.5, c4 > 8.5, c1 <= 12.5, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 7, 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" 
+rule "#17879 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, c5 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 1, 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" 
+rule "#17881 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, c3 > 2.5, c4 > 1.0, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 12, 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" 
+rule "#17901 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 == 3, c5 > 9.0, c1 > 1.5, c3 > 4.5, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 4, 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" 
+rule "#17904 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, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 1, 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" 
+rule "#17940 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 == 4, c3 <= 9.5, c1 > 3.0, c2 > 4.5, c5 <= 7.5, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 2, 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" 
+rule "#17943 poker_hand = 2 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, c4 <= 6.5, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18017 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 13, 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" 
+rule "#18038 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 4, 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" 
+rule "#18039 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 == 1, c2 <= 12.5, c1 > 1.0, c3 <= 12.5, c4 <= 12, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 3, 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" 
+rule "#18040 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 2, 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" 
+rule "#18051 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 == 3, c5 <= 3.5, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 4, c2 == 4, 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" 
+rule "#18078 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, c3 > 2.0, c2 > 8.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18079 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 2, 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" 
+rule "#18096 poker_hand = 2 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18134 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 11, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18140 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 11, c2 == 5, 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" 
+rule "#18141 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, c2 > 6.5, c3 > 3.0, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 11, c2 == 4, 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" 
+rule "#18145 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, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 10, c2 == 13, 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" 
+rule "#18149 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 10, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3062 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#18156 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 10, c2 == 2, 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" 
+rule "#18180 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, c2 <= 10.5, c4 > 1.5, c1 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 9, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3089 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#18184 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, c2 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 7, c5 == 13, 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" 
+rule "#18210 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, c3 > 2.5, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 6, c2 == 12, 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" 
+rule "#18229 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, c3 > 1.0, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 5, c5 == 6, 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" 
+rule "#18231 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 == 1, c3 <= 6.5, c1 > 4.5, c5 > 1.0, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 5, c5 == 4, 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" 
+rule "#18233 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 5, c5 == 2, 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" 
+rule "#18265 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 2, c5 == 9, 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" 
+rule "#18269 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 > 9.5, c4 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 2, c5 == 5, 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" 
+rule "#18281 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 == 1, c1 > 6.0, c5 > 7.0, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 1, c2 == 6, 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" 
+rule "#18311 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 1, 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" 
+rule "#18312 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 == 4, c3 > 2.0, c2 <= 6.5, c1 > 4.5, c5 > 3.5, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 12, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18318 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 12, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18366 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 9, c5 == 10, 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" 
+rule "#18373 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 == 4, c3 > 2.0, c2 > 6.5, c5 <= 9.0, c4 > 1.0, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 9, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18378 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 8, c2 == 11, 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" 
+rule "#18381 poker_hand = 3 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18383 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 8, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18404 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 7, s4 == 1, 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" 
+rule "#18454 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, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 5, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18455 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18480 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 3, s3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18482 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 3, s3 == 2, 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" 
+rule "#18485 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 == 2, c5 > 1.0, c4 <= 10.5, c2 > 3.0, c3 > 1.5, c1 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 2, c2 == 12, 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" 
+rule "#18488 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 == 2, c5 > 1.0, c4 > 10.5, c1 > 7.0, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18495 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 2, c2 == 2, 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" 
+rule "#18497 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, c3 > 3.5, c2 > 1.0, c1 > 5.5, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 1, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18500 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 1, c5 == 10, 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" 
+rule "#18503 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 == 3, c3 > 1.0, c1 > 1.0, c2 > 10.0, c4 > 8.0, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 1, c5 == 7, 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" 
+rule "#18533 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 13, c2 == 2, 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" 
+rule "#18534 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 == 3, c4 <= 4.0, c5 <= 3.5, c1 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 13, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18538 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 12, c2 == 10, 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" 
+rule "#18556 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 <= 5.5, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 11, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18557 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 11, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18566 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 10, c2 == 8, 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" 
+rule "#18589 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 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 8, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18623 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 12, c2 == 3, 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" 
+rule "#18629 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 8, 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" 
+rule "#18633 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 4, 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" 
+rule "#18634 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 == 1, c5 <= 10.5, c1 <= 13, c2 <= 12.5, c4 > 3.5, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 3, 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" 
+rule "#18643 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 > 1.5, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 6, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18652 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 5, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18655 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 5, c2 == 8, 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" 
+rule "#18656 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 5, c2 == 7, 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" 
+rule "#18661 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 5, c2 == 2, 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" 
+rule "#18691 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, c2 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 10, 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" 
+rule "#18701 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 2, c2 == 13, 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" 
+rule "#18762 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 == 3, c4 <= 10.5, c5 <= 8.5, c1 <= 12, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3486 poker_hand = 5 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#18763 poker_hand = 2 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, c1 <= 12, c2 <= 6.5, c3 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#3489 poker_hand = 5 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#18765 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 == 3, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3490 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#18768 poker_hand = 3 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18814 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 10, c2 == 1, 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" 
+rule "#18816 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18817 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 9, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18828 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 8, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18852 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 7, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18871 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 5, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18889 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18907 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 3, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18981 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 12, 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" 
+rule "#19002 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 3, 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" 
+rule "#19005 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 12, c3 == 13, 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" 
+rule "#19013 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 == 3, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 12, c3 == 5, 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" 
+rule "#19062 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 == 3, c4 > 3.0, c5 <= 9.0, c2 > 3.5, c1 > 6.0, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19063 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19065 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19068 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 9, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19069 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 9, c3 == 12, 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" 
+rule "#19073 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 9, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19086 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#19089 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 8, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19091 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19092 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 8, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19110 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 11, 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" 
+rule "#19113 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 == 1, c5 > 8.0, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19145 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 13, 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" 
+rule "#19160 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, c2 <= 6.5, c1 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 10, 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" 
+rule "#19178 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, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 4, 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" 
+rule "#19192 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 == 3, c2 > 1.0, c1 > 2.0, c5 > 2.5, c3 <= 5.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19207 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 2, c2 == 13, 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" 
+rule "#19212 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 2, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19229 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 1, c2 == 4, 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" 
+rule "#19238 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 > 1.0, c2 <= 13, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 13, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19239 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 13, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19243 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 13, c3 == 3, 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" 
+rule "#19245 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 == 2, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 13, c3 == 1, 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" 
+rule "#19247 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, c4 <= 10.0, c3 > 4.0, c2 > 3.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 12, c5 == 12, 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" 
+rule "#19272 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 12, 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" 
+rule "#19277 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 7, 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" 
+rule "#19279 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, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19299 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19314 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 8, 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" 
+rule "#19329 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 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" 
+rule "#19346 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, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 8, c5 == 13, 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" 
+rule "#19353 poker_hand = 2 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 8, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19357 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 8, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19361 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 11, 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" 
+rule "#19382 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 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 2, 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" 
+rule "#19383 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 == 2, c5 <= 10.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3736 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#19388 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 6, c5 == 9, 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" 
+rule "#19434 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 == 2, c5 <= 10.5, c4 > 2.5, c1 > 9.0, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 4, c3 == 1, 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" 
+rule "#19437 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, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 3, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19480 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19488 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19533 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 13, c3 == 2, 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" 
+rule "#19535 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 12, 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" 
+rule "#19538 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, c4 <= 5.5, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 9, 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" 
+rule "#19539 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 8, 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" 
+rule "#19556 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 3, 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" 
+rule "#19563 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 12, c2 == 9, 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" 
+rule "#19609 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 == 3, c3 > 3.0, c1 > 3.5, c2 > 3.5, c4 > 4.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19610 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 12, 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" 
+rule "#19614 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19615 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 7, 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" 
+rule "#19646 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 == 4, c1 > 1.0, c3 > 2.0, c2 <= 4.0, c4 > 8.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 9, c2 == 13, 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" 
+rule "#19649 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 == 3, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 9, c2 == 10, 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" 
+rule "#19672 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 8, c2 == 12, 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" 
+rule "#19679 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 8, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19687 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 7, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19698 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19719 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19720 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19744 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 4, c3 == 4, 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" 
+rule "#19747 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 4, c3 == 1, 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" 
+rule "#19803 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, c2 <= 6.5, c4 > 9.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 9, 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" 
+rule "#19807 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 5, 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" 
+rule "#19821 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, c1 > 3.0, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 3, 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" 
+rule "#19822 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, c2 <= 9.0, c3 <= 12.5, c5 > 2.5, c1 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19823 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19827 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 11, c2 == 11, 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" 
+rule "#19832 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 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 11, c2 == 6, 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" 
+rule "#19834 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 11, c2 == 4, 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" 
+rule "#19835 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, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 11, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19843 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 10, c3 == 8, 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" 
+rule "#19862 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 <= 11.5, c3 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 9, s4 == 3, c2 == 3, 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" 
+rule "#19873 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, c3 > 1.0, c4 > 9.0, c2 > 2.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 8, c3 == 7, 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" 
+rule "#19882 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 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 7, c3 == 11, 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" 
+rule "#19920 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 == 2, c3 <= 3.5, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 10, 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" 
+rule "#19950 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 4, 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" 
+rule "#19968 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 5, c2 == 11, 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" 
+rule "#19969 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 5, c2 == 10, 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" 
+rule "#20011 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 3, c2 == 6, 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" 
+rule "#20014 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, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20023 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 2, c2 == 7, 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" 
+rule "#20039 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 > 8.5, c3 > 11.5, c5 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 2, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20046 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 1, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20059 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 13, c3 == 9, 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" 
+rule "#20061 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 > 8.5, c3 <= 11.5, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 13, c3 == 7, 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" 
+rule "#20070 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 > 8.5, c3 <= 11.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 12, c3 == 11, 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" 
+rule "#20084 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 <= 8.5, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20106 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 10, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20138 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 9, c3 == 6, 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" 
+rule "#20150 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 8, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20154 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20156 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 8, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20157 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 7, c3 == 13, 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" 
+rule "#20165 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 == 4, c1 > 11.0, c4 > 1.5, c2 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 7, c3 == 5, 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" 
+rule "#20198 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 == 2, c2 <= 4.0, c4 > 2.0, c3 <= 7.5, c1 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20206 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 2, 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" 
+rule "#20224 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 > 2.0, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 4, c3 == 9, 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" 
+rule "#20226 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 4, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20231 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20240 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 3, c3 == 6, 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" 
+rule "#20275 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 == 1, c1 > 3.0, c2 > 8.0, c4 > 5.0, c3 > 3.0, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 1, c5 == 9, 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" 
+rule "#20290 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20296 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 13, c3 == 1, 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" 
+rule "#20315 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 == 3, c1 > 3.5, c5 > 1.0, c3 > 3.5, c2 <= 11.5, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 7, 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" 
+rule "#20349 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, c2 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 11, 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" 
+rule "#20367 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 5, 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" 
+rule "#20368 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20390 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 7, 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" 
+rule "#20391 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 == 4, c5 > 6.0, c1 > 4.0, c2 <= 11.0, c3 > 3.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 6, 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" 
+rule "#20408 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, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 1, 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" 
+rule "#20410 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 8, c3 == 12, 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" 
+rule "#20422 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 7, c5 == 13, 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" 
+rule "#20438 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 7, c5 == 9, 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" 
+rule "#20443 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 7, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20452 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 6, c3 == 8, 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" 
+rule "#20468 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, c2 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20480 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 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" 
+rule "#20484 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, c4 <= 13, c5 <= 12.0, c1 > 11.0, c2 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20508 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 4, c5 == 2, 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" 
+rule "#20553 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 == 4, c3 > 1.0, c4 <= 13, c5 > 12.0, c1 > 2.0, c2 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 8, 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" 
+rule "#20574 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 == 3, c3 > 5.5, c2 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 13, c5 == 12, 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" 
+rule "#20583 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 13, c5 == 3, 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" 
+rule "#20587 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 > 1.5, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20619 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20621 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 2, 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" 
+rule "#20630 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 == 1, c5 > 1.0, c3 <= 11.0, c4 > 2.0, c1 > 4.0, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 11, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20637 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 12, 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" 
+rule "#20651 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 == 4, c2 > 1.0, c3 <= 13, c4 > 2.5, c5 > 2.0, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 9, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20655 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 9, c5 == 7, 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" 
+rule "#20675 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, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 7, c3 == 13, 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" 
+rule "#20719 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20726 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20727 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 4, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20733 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 4, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20739 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 3, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20749 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 3, c5 == 3, 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" 
+rule "#20757 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 == 2, c3 <= 12.0, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20758 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 7, 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" 
+rule "#20761 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, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 4, 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" 
+rule "#20775 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, c1 > 2.5, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 2, 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" 
+rule "#20781 poker_hand = 3 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, c1 > 2.5, c2 <= 8.0, c3 <= 6.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 1, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#20785 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 1, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20798 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 13, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20802 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 13, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20821 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20823 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 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" 
+rule "#20824 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, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 4, 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" 
+rule "#20827 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.5, c2 > 1.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 1, 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" 
+rule "#20849 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 4, 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" 
+rule "#20850 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20874 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20888 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20898 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 9, c1 == 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" 
+rule "#20907 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 == 3, c5 > 9.5, c1 > 1.5, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 8, c1 == 9, 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" 
+rule "#20928 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 == 4, c5 > 4.5, c1 > 2.0, c2 <= 6.0, c3 <= 7.0, c4 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 7, c1 == 1, 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" 
+rule "#20929 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 == 4, c5 > 4.5, c1 > 2.0, c2 > 6.0, c4 <= 9.0, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 13, 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" 
+rule "#20931 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 == 4, c5 > 4.5, c1 > 2.0, c2 > 6.0, c4 <= 9.0, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20960 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 6, 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" 
+rule "#20989 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 == 4, c5 > 4.5, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 4, c3 == 3, 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" 
+rule "#21013 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 == 4, c2 > 1.0, c5 > 2.0, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 3, c3 == 4, 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" 
+rule "#21018 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 == 3, c3 <= 8.0, c1 > 1.5, c2 <= 12.5, c4 > 1.5, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 2, c1 == 12, 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" 
+rule "#21021 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 == 3, c3 <= 8.0, c1 > 1.5, c2 <= 12.5, c4 > 1.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 2, c1 == 9, 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" 
+rule "#21027 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 2, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21033 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 1, c3 == 10, 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" 
+rule "#21035 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 == 4, c4 > 1.0, c2 <= 10.5, c1 <= 8.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 1, c3 == 8, 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" 
+rule "#21041 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 == 4, c4 > 1.0, c2 <= 10.5, c1 > 8.0, c3 > 1.5, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 1, c3 == 2, 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" 
+rule "#21049 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 == 3, c5 <= 12, c4 <= 10.0, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21050 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 6, 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" 
+rule "#21083 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 == 3, c5 <= 12, c4 <= 10.0, c3 > 3.5, c1 > 7.0, c2 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21102 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 4, 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" 
+rule "#21103 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, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 3, 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" 
+rule "#21104 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 2, 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" 
+rule "#21112 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, c1 > 3.5, c2 <= 13, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21128 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 10, c3 == 3, 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" 
+rule "#21132 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 == 2, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 12, 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" 
+rule "#21134 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 == 2, c1 > 3.5, c2 > 2.0, c4 > 1.5, c5 > 1.0, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21136 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 8, 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" 
+rule "#21153 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 == 1, c4 > 1.0, c1 > 10.0, c2 > 4.0, c5 <= 9.5, c3 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 3, 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" 
+rule "#21154 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 == 1, c4 > 1.0, c1 > 10.0, c2 > 4.0, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 2, 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" 
+rule "#21156 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 == 4, c1 <= 11.0, c5 <= 12.5, c2 <= 11.5, c3 > 3.0, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 8, s1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4936 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#21171 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, c4 <= 4.0, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 8, s1 == 1, 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" 
+rule "#21175 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 10, 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" 
+rule "#21212 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 > 7.5, c1 > 5.5, c2 > 5.5, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4967 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#21214 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 8, 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" 
+rule "#21216 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 <= 12.0, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 6, 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" 
+rule "#21221 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 == 3, c5 > 7.0, c3 > 5.0, c1 <= 12.5, c2 > 1.5, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21237 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21241 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 5, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21263 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 9, 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" 
+rule "#21269 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 == 3, c5 > 7.0, c3 > 5.0, c1 <= 12.5, c2 > 1.5, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21276 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21283 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 3, c2 == 2, 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" 
+rule "#21285 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, c5 > 5.0, c2 <= 10.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 13, 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" 
+rule "#21308 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, c5 > 8.5, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21310 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 1, c2 == 13, 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" 
+rule "#21331 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, c4 > 2.0, c3 > 1.5, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 1, c2 == 4, 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" 
+rule "#21388 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 > 3.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 9, 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" 
+rule "#21390 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, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 7, 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" 
+rule "#21407 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, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21411 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 11, s4 == 2, 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" 
+rule "#21414 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 10, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21437 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 10, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21460 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 9, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21464 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 8, s5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21466 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 8, s5 == 1, 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" 
+rule "#21493 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 > 1.5, c3 > 2.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 6, c1 == 12, 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" 
+rule "#21498 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 6, c1 == 7, 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" 
+rule "#21510 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, c5 > 4.5, c3 > 5.0, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 5, c2 == 8, 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" 
+rule "#21519 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 == 2, c1 <= 11.5, c2 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 4, c1 == 12, 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" 
+rule "#21520 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 > 3.0, c4 <= 13, c1 <= 6.0, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21522 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 4, c1 == 9, 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" 
+rule "#21536 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 > 3.0, c4 <= 13, c1 > 6.0, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21544 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 12, 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" 
+rule "#21578 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 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 2, 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" 
+rule "#21593 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 13, 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" 
+rule "#21612 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, c3 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21621 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 13, c2 == 10, 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" 
+rule "#21623 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, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 13, c2 == 8, 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" 
+rule "#21624 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 == 4, c2 <= 8.0, c1 > 1.5, c3 > 3.0, c4 <= 10.5, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 13, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21628 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 13, c2 == 3, 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" 
+rule "#21643 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 == 3, c1 <= 11.5, c4 > 3.0, c5 > 9.5, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 12, c1 == 1, 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" 
+rule "#21649 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 11, c1 == 8, 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" 
+rule "#21665 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 11, c1 == 4, 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" 
+rule "#21671 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21678 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 10, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21680 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 10, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21685 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 9, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21686 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 9, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21693 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 9, c1 == 2, 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" 
+rule "#21744 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 7, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21749 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 7, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21758 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 6, c1 == 12, 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" 
+rule "#21771 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 12, 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" 
+rule "#21816 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 > 3.5, c1 > 4.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 4, c1 == 4, 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" 
+rule "#21831 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 == 4, c4 <= 13, c1 > 2.0, c5 <= 11.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 3, c2 == 2, 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" 
+rule "#21837 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, c1 > 1.0, c2 <= 10.0, c4 > 5.0, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 2, c2 == 9, 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" 
+rule "#21838 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, c1 > 1.0, c2 <= 10.0, c4 > 5.0, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 2, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21841 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21844 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 2, c2 == 2, 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" 
+rule "#21849 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21853 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 1, c1 == 6, 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" 
+rule "#21921 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, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 12, 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" 
+rule "#21928 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 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" 
+rule "#21930 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21969 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21990 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21998 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 9, c2 == 10, 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" 
+rule "#22002 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, c1 <= 10.0, c2 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 9, c2 == 6, 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" 
+rule "#22030 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 == 2, c3 <= 11.5, c2 > 2.0, c4 <= 3.0, c1 > 6.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 8, c1 == 3, 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" 
+rule "#22031 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 == 1, c2 > 7.0, c4 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 8, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22032 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 8, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22044 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 7, c2 == 2, 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" 
+rule "#22047 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 == 1, c2 <= 7.0, c4 > 2.0, c1 > 3.5, c3 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 6, c2 == 12, 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" 
+rule "#22048 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 == 1, c5 <= 12.5, c2 > 1.5, c1 <= 9.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 6, c2 == 11, 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" 
+rule "#22053 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 == 1, c5 <= 12.5, c2 > 1.5, c1 > 9.0, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 6, c2 == 6, 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" 
+rule "#22054 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 == 1, c5 <= 12.5, c2 > 1.5, c1 > 9.0, c3 <= 7.0, c4 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 6, c2 == 5, 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" 
+rule "#22056 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, c5 <= 10.0, c3 > 2.0, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 6, c2 == 3, 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" 
+rule "#22060 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 == 1, c3 <= 12.0, c2 > 1.0, c1 > 1.0, c4 <= 13, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 5, c2 == 12, 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" 
+rule "#22066 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, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 5, c2 == 6, 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" 
+rule "#22085 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, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 4, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5516 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#22089 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 4, c1 == 8, 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" 
+rule "#22098 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, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5568 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#22106 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, c1 > 3.5, c3 > 9.5, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 3, c2 == 4, 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" 
+rule "#22111 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22112 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22160 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22162 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 1, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22164 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 1, c1 == 8, 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" 
+rule "#22172 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22177 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22178 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22195 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 2, 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" 
+rule "#22197 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 == 2, c1 > 3.5, c5 <= 6.0, c3 > 4.0, c4 <= 10.5, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 13, 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" 
+rule "#22212 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 10, 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" 
+rule "#22216 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, c1 > 5.0, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 6, c2 == 13, 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" 
+rule "#22231 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 3, 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" 
+rule "#22260 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, c4 <= 12.0, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 11, 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" 
+rule "#22262 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, c5 > 7.0, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 10, c1 == 12, 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" 
+rule "#22277 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 6, 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" 
+rule "#22280 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, c2 > 3.0, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 3, 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" 
+rule "#22282 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22293 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 10, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22294 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 10, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22296 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 9, c1 == 13, 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" 
+rule "#22324 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 > 3.5, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 8, c1 == 13, 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" 
+rule "#22344 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 > 3.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 8, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22356 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22386 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 6, c2 == 13, 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" 
+rule "#22388 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 == 2, c1 <= 7.5, c3 > 2.0, c2 > 3.5, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 6, c2 == 11, 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" 
+rule "#22391 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, c3 > 8.0, c1 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 6, c2 == 8, 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" 
+rule "#22477 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, c3 > 2.5, c5 > 3.0, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22479 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 8, 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" 
+rule "#22493 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, c1 > 8.5, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 1, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22495 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 1, c1 == 5, 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" 
+rule "#22499 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 == 3, c1 > 1.0, c2 > 4.0, c4 > 2.5, c3 > 9.5, c5 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22501 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 13, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22525 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 12, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22533 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 11, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22575 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22586 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 6, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22594 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 5, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22617 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 4, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22623 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22657 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22671 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 1, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22672 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 1, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22677 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22683 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 11, 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" 
+rule "#22718 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, c3 > 2.5, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 12, c3 == 1, 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" 
+rule "#22725 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 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 7, 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" 
+rule "#22752 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, c5 > 4.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 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" 
+rule "#22795 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, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22797 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 9, 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" 
+rule "#22806 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, c4 > 5.0, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 8, c2 == 13, 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" 
+rule "#22839 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, c1 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22862 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 6, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22884 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 10, 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" 
+rule "#22900 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, c1 > 1.0, c3 > 2.5, c5 <= 13, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 6, 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" 
+rule "#22935 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 == 1, c2 > 1.5, c4 <= 12.0, c1 <= 3.5, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 3, c2 == 9, 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" 
+rule "#22939 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 3, c2 == 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" 
+rule "#22942 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, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6034 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#22946 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 == 2, c1 > 1.0, c4 > 1.5, c2 > 3.0, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 11, 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" 
+rule "#22979 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 == 2, c1 > 1.0, c4 > 1.5, c2 > 3.0, c3 > 1.5, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 2, 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" 
+rule "#23014 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 > 2.5, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 13, c3 == 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" 
+rule "#23030 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 == 4, c1 > 2.5, c2 <= 13, c3 > 3.0, c4 <= 8.5, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 12, c1 == 2, 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" 
+rule "#23031 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, c1 > 2.5, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 12, c1 == 1, 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" 
+rule "#23035 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, c3 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23065 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23084 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 10, 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" 
+rule "#23086 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 <= 12, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 8, 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" 
+rule "#23110 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 == 4, c3 > 3.0, c4 <= 9.5, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 10, 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" 
+rule "#23130 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 == 4, c3 > 3.0, c4 > 9.5, c1 <= 10.5, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6148 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#23181 poker_hand = 3 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#23186 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 13, 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" 
+rule "#23188 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 == 4, c5 > 7.0, c4 > 2.0, c2 <= 8.0, c3 > 2.0, c1 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6178 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#23190 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 == 3, c5 <= 4.5, c1 <= 8.0, c2 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23206 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 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" 
+rule "#23225 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 == 3, c5 > 4.5, c4 <= 12.5, c1 > 5.0, c2 <= 9.5, c3 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 11, 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" 
+rule "#23240 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 8, 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" 
+rule "#23281 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 == 1, c1 <= 11.0, c3 <= 10.5, c5 > 1.5, c4 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 1, c3 == 5, 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" 
+rule "#23289 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 == 1, c1 > 11.0, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 10, 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" 
+rule "#23312 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 > 6.5, c2 > 3.0, c5 > 8.5, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 12, c2 == 12, 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" 
+rule "#23325 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, c5 <= 11, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 12, 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" 
+rule "#23348 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 1, 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" 
+rule "#23372 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 == 1, c5 > 1.0, c1 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 2, 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" 
+rule "#23416 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, c1 <= 11.5, c3 <= 4.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 7, c2 == 9, 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" 
+rule "#23425 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, c5 <= 13, c2 <= 13, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 6, c2 == 13, 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" 
+rule "#23427 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 == 1, c1 <= 13, c4 > 8.0, c2 > 2.5, c5 > 2.0, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 6, c2 == 11, 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" 
+rule "#23430 poker_hand = 0 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 6, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23437 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 6, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23466 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 4, c2 == 10, 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" 
+rule "#23476 poker_hand = 0 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 13, 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" 
+rule "#23492 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, c2 <= 2.0, c1 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23524 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 2, c3 == 2, 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" 
+rule "#23527 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 > 1.5, c2 <= 11.5, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 1, c3 == 12, 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" 
+rule "#23547 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, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 1, c3 == 4, 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" 
+rule "#23548 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 == 1, c5 <= 13, c3 > 8.0, c2 <= 9.0, c1 <= 12.5, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 1, c3 == 3, 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" 
+rule "#23557 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 == 2, c1 > 9.0, c3 > 5.0, c4 > 5.5, c2 <= 11.5, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 13, c1 == 7, 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" 
+rule "#23562 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 13, c1 == 2, 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" 
+rule "#23581 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 == 3, c4 <= 12.5, c1 > 1.5, c2 > 2.0, c3 <= 11.5, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23586 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 3, 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" 
+rule "#23588 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23590 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 11, c1 == 12, 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" 
+rule "#23595 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, c3 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23615 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 10, c3 == 12, 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" 
+rule "#23616 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, c2 <= 10.5, c3 > 6.0, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 10, c3 == 11, 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" 
+rule "#23623 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 > 2.0, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 10, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6564 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#23629 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, c1 > 1.0, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 8, c1 == 12, 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" 
+rule "#23636 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, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 8, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23637 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 8, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23651 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 7, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23654 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 6, c1 == 13, 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" 
+rule "#23658 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, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 6, c1 == 9, 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" 
+rule "#23665 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, c4 > 2.5, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23666 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 6, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23668 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23685 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 7, 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" 
+rule "#23690 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 == 1, c5 > 4.0, c2 <= 11.5, c1 > 2.5, c4 <= 7.5, c3 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 2, 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" 
+rule "#23711 poker_hand = 2 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, c4 > 7.5, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 3, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23726 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 3, c1 == 4, 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" 
+rule "#23734 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 == 3, c3 <= 12.0, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 2, c1 == 9, 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" 
+rule "#23738 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 == 2, c1 > 4.0, c3 <= 8.0, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 2, c1 == 5, 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" 
+rule "#23749 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, c4 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23813 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 4, 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" 
+rule "#23837 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, c3 <= 9.5, c2 > 1.0, c4 > 3.0, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 12, c2 == 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" 
+rule "#23840 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, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 12, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23857 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 11, 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" 
+rule "#23888 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 == 4, c4 <= 3.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 6, 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" 
+rule "#23891 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 == 4, c4 > 3.0, c3 > 1.0, c1 <= 2.5, c2 <= 13, c5 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 3, 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" 
+rule "#23893 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, c2 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 1, 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" 
+rule "#23982 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 4, c3 == 12, 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" 
+rule "#23998 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 4, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24002 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 4, c3 == 4, 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" 
+rule "#24008 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, c3 > 10.0, c5 > 6.0, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 2, c2 == 12, 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" 
+rule "#24014 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24074 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 8, 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" 
+rule "#24075 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 <= 9.0, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 7, 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" 
+rule "#24095 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, c1 > 2.0, c4 > 6.5, c3 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 12, c1 == 12, 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" 
+rule "#24097 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 12, c1 == 10, 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" 
+rule "#24100 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, c3 <= 12.5, c2 <= 12.5, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 12, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24111 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 11, c1 == 9, 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" 
+rule "#24130 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 == 4, c1 > 1.5, c5 > 1.5, c3 > 3.0, c4 > 3.0, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6792 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#24139 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, c3 <= 8.0, c4 > 3.0, c2 <= 10.0, c5 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 6, 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" 
+rule "#24141 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, c4 > 3.5, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 4, 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" 
+rule "#24158 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 12, 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" 
+rule "#24160 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 <= 6.5, c1 > 7.0, c4 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24227 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 7, c1 == 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" 
+rule "#24231 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 7, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24234 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 6, c3 == 11, 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" 
+rule "#24248 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24250 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 6, c3 == 7, 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" 
+rule "#24254 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, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 6, c3 == 3, 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" 
+rule "#24282 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 4, c1 == 13, 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" 
+rule "#24285 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 4, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24286 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24292 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 4, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24298 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24338 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 7, 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" 
+rule "#24362 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 <= 13, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 1, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24380 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 12, c1 == 4, 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" 
+rule "#24430 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 10, c1 == 4, 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" 
+rule "#24431 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, c1 <= 10.5, c5 > 6.5, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 10, c1 == 3, 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" 
+rule "#24442 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 == 3, c5 > 2.0, c1 > 1.0, c4 <= 11.0, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24463 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24465 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 8, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24507 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24509 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24533 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 6, c1 == 1, 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" 
+rule "#24534 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 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 5, s2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24535 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 5, s2 == 3, 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" 
+rule "#24537 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 == 3, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 5, s2 == 1, 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" 
+rule "#24553 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 10, 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" 
+rule "#24569 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24573 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 2, 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" 
+rule "#24588 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, c4 > 5.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 13, 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" 
+rule "#24607 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24610 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 3, 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" 
+rule "#24614 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, c1 > 7.0, c2 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 1, c2 == 12, 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" 
+rule "#24626 poker_hand = 2 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, c1 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24653 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 12, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24660 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 12, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24661 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 12, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24669 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 11, c2 == 8, 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" 
+rule "#24674 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 11, c2 == 3, 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" 
+rule "#24678 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 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24693 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 9, 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" 
+rule "#24696 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, c2 <= 11.5, c1 <= 11.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 6, 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" 
+rule "#24745 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24746 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 6, 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" 
+rule "#24749 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 3, 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" 
+rule "#24799 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, c1 > 6.0, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 7, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24816 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24822 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 5, c1 == 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" 
+rule "#24831 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, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 4, c1 == 9, 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" 
+rule "#24856 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, c1 <= 3.0, c3 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 3, c1 == 9, 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" 
+rule "#24871 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 == 1, c5 > 5.0, c1 > 2.0, c2 <= 9.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 2, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24875 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24876 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 2, c1 == 2, 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" 
+rule "#24877 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 2, c1 == 1, 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" 
+rule "#24887 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, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 1, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24929 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 12, 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" 
+rule "#24933 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, c2 > 1.5, c1 > 4.0, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24953 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 11, c1 == 13, 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" 
+rule "#24957 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 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 11, c1 == 9, 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" 
+rule "#24961 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 <= 12.0, c4 > 3.0, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24963 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 11, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24966 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 10, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24987 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 10, c1 == 4, 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" 
+rule "#25060 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 > 12.0, c5 > 3.5, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 3, c3 == 3, 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" 
+rule "#25072 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 == 4, c1 > 1.0, c4 <= 8.0, c3 > 3.5, c2 > 2.0, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25099 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 6, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25103 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 13, 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" 
+rule "#25106 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, c3 > 3.5, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 10, 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" 
+rule "#25112 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25115 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25133 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25160 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 2, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25162 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 2, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25174 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 1, c3 == 6, 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" 
+rule "#25179 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, c1 <= 12, c4 <= 9.5, c5 <= 7, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 1, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25208 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 12, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25211 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 12, c2 == 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" 
+rule "#25254 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, c1 > 2.5, c2 > 1.0, c4 > 9.0, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 10, c1 == 2, 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" 
+rule "#25264 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 == 4, c4 > 8.5, c2 <= 8.5, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 9, c1 == 5, 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" 
+rule "#25271 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 8, c1 == 11, 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" 
+rule "#25287 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 == 4, c4 <= 8.5, c3 <= 11.0, c2 > 5.0, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 8, c1 == 7, 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" 
+rule "#25294 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 == 4, c4 <= 8.5, c3 <= 11.0, c2 > 5.0, c1 > 4.0, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25297 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 10, 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" 
+rule "#25304 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 == 3, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 3, 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" 
+rule "#25345 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 <= 13, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 5, c1 == 12, 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" 
+rule "#25348 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25367 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 5, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25392 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 4, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25394 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 3, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25396 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 3, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25401 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 3, c2 == 6, 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" 
+rule "#25405 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 3, c2 == 2, 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" 
+rule "#25429 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, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 2, c1 == 3, 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" 
+rule "#25441 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 == 4, c5 <= 4.5, c3 <= 9.0, c1 > 5.5, c4 > 2.5, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 1, c1 == 4, 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" 
+rule "#25442 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 == 4, c5 <= 4.5, c3 > 9.0, c1 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 1, c1 == 3, 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" 
+rule "#25478 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 == 4, c5 > 4.5, c2 > 1.5, c1 > 4.5, c4 > 4.0, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 12, c3 == 5, 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" 
+rule "#25479 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 12, c3 == 4, 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" 
+rule "#25480 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 > 2.5, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25490 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 11, c3 == 6, 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" 
+rule "#25493 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, c1 > 1.0, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 11, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25543 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25548 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25549 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 7, c1 == 11, 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" 
+rule "#25558 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 7, c1 == 10, c3 == 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" 
+rule "#25566 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 == 3, c5 > 1.5, c2 > 3.0, c1 <= 11.0, c3 <= 10.5, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 7, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25572 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25620 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25637 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 4, c1 == 10, 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" 
+rule "#25660 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, c3 > 10.5, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 3, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25661 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25669 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 3, c1 == 6, c3 == 10, 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" 
+rule "#25688 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 > 4.5, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 2, c1 == 9, 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" 
+rule "#25708 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 == 3, c4 <= 4.5, c1 > 2.5, c3 > 6.0, c2 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 2, c1 == 1, 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" 
+rule "#25709 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, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 1, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25710 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 1, c1 == 12, 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" 
+rule "#25715 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 1, c1 == 7, 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" 
+rule "#25758 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 12, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25762 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 11, 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" 
+rule "#25765 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 == 4, c1 > 9.0, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25772 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 1, 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" 
+rule "#25775 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 11, 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" 
+rule "#25790 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 == 2, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25791 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 7, 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" 
+rule "#25793 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 == 2, c1 > 1.0, c2 > 1.5, c3 > 2.0, c4 > 1.0, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25794 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 4, 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" 
+rule "#25834 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 == 1, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 9, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25847 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 8, c3 == 1, 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" 
+rule "#25851 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 == 1, c2 > 3.0, c4 > 1.5, c1 <= 7.0, c3 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 7, c1 == 10, 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" 
+rule "#25866 poker_hand = 2 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#25871 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 6, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25902 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 10, 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" 
+rule "#25909 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 == 4, c1 <= 13, c3 > 8.0, c4 > 5.0, c5 <= 9.5, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25913 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25921 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25951 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25955 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 1, c1 == 8, 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" 
+rule "#25973 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 == 1, c3 <= 9.5, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 13, c1 == 3, 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" 
+rule "#25986 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, c2 <= 10.0, c3 <= 12.0, c5 <= 8.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 12, c1 == 3, 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" 
+rule "#25991 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26002 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 13, 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" 
+rule "#26005 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, c3 > 2.5, c1 <= 11.5, c5 > 6.5, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 10, 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" 
+rule "#26012 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 > 1.0, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 3, 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" 
+rule "#26020 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 <= 12.5, c4 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 2, c1 == 6, 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" 
+rule "#26035 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26050 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 9, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26052 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 8, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26054 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 8, c1 == 11, 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" 
+rule "#26087 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 == 1, c5 > 5.0, c2 > 3.0, c1 > 5.5, c3 > 3.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 7, c1 == 3, 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" 
+rule "#26091 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 == 4, c3 <= 6.5, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 5, c1 == 13, 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" 
+rule "#26119 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 == 4, c3 <= 6.5, c4 <= 8.5, c1 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 3, c1 == 11, 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" 
+rule "#26131 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 == 4, c3 > 6.5, c1 > 1.0, c2 > 4.0, c4 <= 10.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 12, 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" 
+rule "#26132 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 == 4, c3 > 6.5, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 11, 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" 
+rule "#26133 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, c3 > 1.5, c4 > 3.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26138 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 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" 
+rule "#26139 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 == 2, c4 <= 13, c1 > 2.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 4, 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" 
+rule "#26155 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 <= 6.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26179 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 1, 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" 
+rule "#26208 poker_hand = 2 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 11, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26226 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#26237 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 10, c3 == 4, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26254 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 9, c2 == 3, 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" 
+rule "#26258 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26269 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26280 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 5, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26288 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 4, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26304 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 3, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26305 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26310 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26314 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 2, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26320 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26345 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 1, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26418 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 9, 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" 
+rule "#26433 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, c2 > 2.0, c3 > 1.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 6, 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" 
+rule "#26438 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 1, 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" 
+rule "#26461 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 == 4, c5 <= 3.0, c1 > 3.0, c2 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 10, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26511 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 8, c1 == 3, 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" 
+rule "#26522 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 <= 10.0, c5 > 4.5, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26526 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 7, c3 == 1, 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" 
+rule "#26551 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, c1 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26554 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26558 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26560 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#26577 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26580 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 4, c3 == 10, 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" 
+rule "#26588 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, c1 <= 12.0, c4 <= 10.5, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 4, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26618 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26628 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26658 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 6, 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" 
+rule "#26677 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26703 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 11, 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" 
+rule "#26721 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26756 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 12, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26765 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 11, c1 == 11, 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" 
+rule "#26769 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26787 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 10, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26789 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 9, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26810 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 8, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26845 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26846 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 5, c1 == 8, 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" 
+rule "#26886 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, c1 > 1.0, c2 > 8.0, c5 > 2.0, c3 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 7, 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" 
+rule "#26903 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 == 1, c4 <= 7.5, c5 <= 9.0, c3 > 6.0, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 2, 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" 
+rule "#26912 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 == 4, c3 > 1.0, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 1, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26922 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 13, c2 == 9, 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" 
+rule "#26924 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 13, c2 == 7, 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" 
+rule "#26934 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, c5 <= 9.0, c1 <= 10.5, c3 > 5.5, c4 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26938 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26967 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 1, 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" 
+rule "#26969 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 11, c1 == 12, 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" 
+rule "#26977 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 11, c1 == 4, 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" 
+rule "#26997 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 > 1.0, c4 > 1.0, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26998 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 9, 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" 
+rule "#27008 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 8, s3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27042 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 6, c2 == 7, 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" 
+rule "#27057 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 == 1, c2 > 4.5, c3 > 3.0, c4 > 8.0, c1 > 2.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 5, c1 == 5, 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" 
+rule "#27059 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 5, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27074 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 4, c2 == 13, 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" 
+rule "#27080 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 4, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27086 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 4, c2 == 1, 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" 
+rule "#27091 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, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27094 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 8, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27131 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 2, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27134 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27137 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 1, c1 == 13, 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" 
+rule "#27162 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, c3 <= 12.5, c4 > 5.0, c1 > 2.5, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 13, c1 == 13, 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" 
+rule "#27167 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 == 4, c5 <= 13, c2 <= 5.0, c3 > 1.5, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27169 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 13, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27179 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 9, 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" 
+rule "#27180 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27235 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 2, 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" 
+rule "#27237 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 10, c1 == 13, 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" 
+rule "#27242 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, c1 > 4.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 10, c1 == 8, 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" 
+rule "#27262 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 9, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27267 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 8, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27279 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27282 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 7, 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" 
+rule "#27299 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 == 1, c2 > 1.0, c5 <= 12.0, c4 <= 9.5, c3 <= 10.0, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 2, 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" 
+rule "#27310 poker_hand = 2 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, c4 <= 9.5, c3 > 10.0, c1 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 6, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27331 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 8, 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" 
+rule "#27332 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27368 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 4, c1 == 8, 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" 
+rule "#27394 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 7, 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" 
+rule "#27441 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 10, 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" 
+rule "#27461 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, c2 > 4.5, c4 > 5.0, c1 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 2, 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" 
+rule "#27474 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 12, c1 == 3, 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" 
+rule "#27476 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 == 4, c4 > 1.5, c1 > 3.0, c5 > 1.5, c2 <= 5.5, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27478 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 12, 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" 
+rule "#27479 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, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 11, 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" 
+rule "#27517 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, c3 > 3.5, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27562 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 2, 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" 
+rule "#27563 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 == 3, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 1, 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" 
+rule "#27570 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 == 4, c1 > 5.5, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 7, 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" 
+rule "#27571 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 == 4, c1 > 5.5, c4 > 8.0, c5 > 4.0, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 6, 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" 
+rule "#27577 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, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 13, 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" 
+rule "#27619 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 <= 6.0, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 6, c3 == 8, 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" 
+rule "#27636 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 == 3, c1 > 9.0, c2 <= 7.0, c5 > 1.5, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 5, c1 == 4, 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" 
+rule "#27653 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, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 4, c3 == 12, 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" 
+rule "#27655 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, c2 > 1.0, c4 <= 11.0, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 4, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27656 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 4, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27658 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 4, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27661 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 4, c3 == 4, 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" 
+rule "#27662 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, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 4, c3 == 3, 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" 
+rule "#27669 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 > 6.5, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 3, c1 == 9, 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" 
+rule "#27672 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 3, c1 == 6, 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" 
+rule "#27674 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 == 3, c3 <= 10.0, c1 > 3.0, c2 <= 13, c4 > 2.0, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 3, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27675 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 3, c1 == 3, 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" 
+rule "#27679 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, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 2, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27689 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 2, c3 == 2, 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" 
+rule "#27716 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, c2 > 1.0, c4 <= 10.0, c3 > 3.0, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 13, c2 == 1, 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" 
+rule "#27719 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, c5 > 4.0, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 11, 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" 
+rule "#27733 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, c2 > 1.0, c3 <= 9.5, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27736 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27760 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 11, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27763 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 11, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27771 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 10, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27784 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 12, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27798 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 7, 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" 
+rule "#27809 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, c2 > 1.0, c3 <= 9.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 8, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27846 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27850 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 6, c2 == 6, 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" 
+rule "#27863 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 4, c2 == 7, 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" 
+rule "#27864 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, c1 > 2.0, c4 <= 7.5, c2 <= 8.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 4, c2 == 6, 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" 
+rule "#27868 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, c1 > 2.0, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 4, c2 == 2, 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" 
+rule "#27874 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 == 4, c5 > 2.0, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27876 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27917 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27926 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 13, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27927 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 13, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27945 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 2, 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" 
+rule "#27952 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 == 4, c5 > 2.0, c2 > 2.5, c1 <= 9, c3 <= 11.0, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 8, 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" 
+rule "#27955 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 == 4, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28003 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 6, 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" 
+rule "#28004 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28032 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 9, c5 == 2, 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" 
+rule "#28036 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 8, c5 == 11, 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" 
+rule "#28074 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 11, 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" 
+rule "#28082 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28118 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 5, c3 == 4, 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" 
+rule "#28127 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 8, 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" 
+rule "#28160 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, c1 <= 8.0, c4 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28168 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 3, c3 == 4, 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" 
+rule "#28169 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, c1 > 8.0, c4 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 3, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28174 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 11, 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" 
+rule "#28187 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 1, c5 == 11, 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" 
+rule "#28192 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 1, c5 == 6, 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" 
+rule "#28194 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, c4 <= 8.5, c1 <= 5.0, c2 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 1, c5 == 4, 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" 
+rule "#28198 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, c5 > 1.5, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28201 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 10, 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" 
+rule "#28217 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, c2 > 4.0, c3 > 1.5, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 11, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28232 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 10, s1 == 1, c3 == 9, 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" 
+rule "#28245 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 == 2, c3 <= 13, c1 > 2.5, c2 > 6.5, c4 > 7.0, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 9, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28248 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 9, c2 == 6, 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" 
+rule "#28281 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 10, 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" 
+rule "#28310 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, c1 <= 11.0, c4 > 1.5, c3 > 5.0, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 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" 
+rule "#28317 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, c1 > 11.0, c4 > 1.5, c2 > 3.0, c3 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28318 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 7, c3 == 10, 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" 
+rule "#28320 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 7, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28381 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28383 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28397 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 5, c3 == 2, 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" 
+rule "#28402 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, c2 <= 12.5, c5 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 1, 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" 
+rule "#28408 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-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, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 3, c2 == 8, 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" 
+rule "#28410 poker_hand = 0 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 3, c2 == 6, 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" 
+rule "#28411 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28435 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 6, 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" 
+rule "#28486 poker_hand = 0 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, c4 <= 8.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28497 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28504 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 12, c3 == 12, 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" 
+rule "#28530 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28531 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28539 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 2, 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" 
+rule "#28540 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 > 2.5, c1 <= 11.5, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 1, 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" 
+rule "#28562 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 == 3, c2 <= 11.0, c3 > 2.5, c1 <= 11.5, c4 > 5.0, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 9, c3 == 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" 
+rule "#28568 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28569 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 11, 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" 
+rule "#28605 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 == 4, c2 > 1.0, c5 > 2.0, c1 > 1.5, c3 > 2.0, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 7, c3 == 12, 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" 
+rule "#28616 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 == 4, c2 > 1.0, c5 > 2.0, c1 > 1.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 7, c3 == 1, 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" 
+rule "#28618 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, c2 > 4.0, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 12, 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" 
+rule "#28621 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 == 2, c1 <= 10.5, c2 <= 5.0, c3 <= 12.5, c4 > 4.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28648 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 5, c2 == 7, 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" 
+rule "#28650 poker_hand = 3 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 5, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#28673 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28709 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28742 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 1, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28748 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 1, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28766 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 1, c3 == 1, 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" 
+rule "#28769 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 11, 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" 
+rule "#28773 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, c3 > 4.0, c4 > 2.5, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 7, 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" 
+rule "#28808 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, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 11, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28810 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 11, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28821 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 10, c3 == 10, 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" 
+rule "#28827 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, c5 <= 13, c3 > 3.0, c2 <= 12.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 10, c3 == 4, 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" 
+rule "#28831 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 == 2, c2 > 1.0, c4 > 2.0, c5 > 6.0, c1 > 7.5, c3 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 9, c2 == 13, 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" 
+rule "#28840 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, c5 <= 10.0, c2 > 2.0, c1 > 7.0, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 9, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28847 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28848 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28849 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28852 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28854 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 3, 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" 
+rule "#28855 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 == 2, c4 > 2.5, c5 <= 10.0, c2 > 2.0, c1 <= 7.0, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 2, 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" 
+rule "#28858 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, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28865 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 5, 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" 
+rule "#28867 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 > 5.0, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28899 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28907 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28946 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 2, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28948 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 1, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28980 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 13, c3 == 5, 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" 
+rule "#28985 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 > 4.5, c2 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 13, 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" 
+rule "#28986 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, c3 > 4.0, c1 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 12, 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" 
+rule "#28987 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, c4 > 2.0, c5 > 1.0, c2 > 1.0, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29023 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 11, c3 == 12, 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" 
+rule "#29050 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29062 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 11, 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" 
+rule "#29069 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 == 1, c1 > 8.0, c3 > 2.5, c2 <= 10.0, c4 > 4.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29070 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29082 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 8, c3 == 4, 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" 
+rule "#29086 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 == 4, c4 <= 11.0, c5 > 2.0, c1 > 2.0, c2 > 1.5, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 7, c5 == 13, 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" 
+rule "#29092 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 == 4, c4 <= 11.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 7, c5 == 7, 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" 
+rule "#29093 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, c3 > 2.0, c4 > 3.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 7, c5 == 6, 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" 
+rule "#29098 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, c3 > 2.0, c4 > 7.5, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 7, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8957 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#29106 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 <= 8.0, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 6, c5 == 6, 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" 
+rule "#29107 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, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 6, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29114 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29145 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29153 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 10, 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" 
+rule "#29169 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 <= 4.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29185 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 2, c3 == 1, 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" 
+rule "#29227 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 10, 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" 
+rule "#29244 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 == 1, c5 > 4.0, c4 <= 5.5, c2 > 2.0, c1 > 4.5, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 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" 
+rule "#29250 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, c1 > 5.0, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29255 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 7, 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" 
+rule "#29288 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, c1 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 11, 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" 
+rule "#29290 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 == 2, c1 <= 9.5, c2 > 1.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29311 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29314 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29316 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29327 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 10, c2 == 10, 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" 
+rule "#29333 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, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 10, c2 == 4, 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" 
+rule "#29334 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, c3 <= 9.5, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 10, c2 == 3, 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" 
+rule "#29343 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 == 1, c1 > 2.0, c3 > 2.5, c5 > 3.0, c2 <= 9.5, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 7, 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" 
+rule "#29358 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, c3 <= 7.0, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29392 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 7, c2 == 8, 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" 
+rule "#29401 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, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 6, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29403 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 6, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29404 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 6, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29420 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 5, c2 == 6, 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" 
+rule "#29425 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 == 3, c2 <= 13, c5 > 1.0, c3 <= 5.5, c4 > 3.0, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 5, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29443 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 8, 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" 
+rule "#29509 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 == 2, c1 > 7.0, c4 <= 8.5, c2 > 6.0, c3 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 4, 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" 
+rule "#29574 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, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 1, 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" 
+rule "#29578 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, c2 > 2.5, c3 > 5.0, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 12, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29582 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 12, c2 == 6, 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" 
+rule "#29603 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 11, c3 == 10, 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" 
+rule "#29605 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, c5 <= 9.0, c3 <= 8.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 11, c3 == 8, 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" 
+rule "#29607 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 11, c3 == 6, 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" 
+rule "#29619 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, c5 > 4.0, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29653 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 8, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29657 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 8, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29658 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 8, c3 == 6, 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" 
+rule "#29665 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 == 1, c2 > 11.0, c5 > 2.0, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 12, 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" 
+rule "#29675 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, c3 > 7.0, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29691 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 6, c2 == 11, 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" 
+rule "#29709 poker_hand = 2 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, c3 <= 7.0, c4 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 6, c2 == 5, 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" 
+rule "#29755 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 9, 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" 
+rule "#29773 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29776 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 3, c2 == 13, 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" 
+rule "#29798 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 == 1, c4 > 3.0, c2 <= 12.0, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 2, c3 == 4, 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" 
+rule "#29811 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 1, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29819 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 13, c2 == 9, 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" 
+rule "#29820 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 == 4, c1 <= 11.5, c3 <= 4.0, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9423 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#29834 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 == 4, c1 <= 11.5, c3 > 4.0, c4 <= 11, c2 > 5.5, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 12, c2 == 7, 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" 
+rule "#29846 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.0, c5 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 11, c2 == 8, 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" 
+rule "#29855 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 10, c2 == 12, 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" 
+rule "#29878 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 == 1, c4 <= 4.5, c2 > 2.5, c1 > 3.0, c3 <= 11, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 10, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29895 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 8, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29901 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 8, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29919 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 6, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29922 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 6, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29932 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 4, c3 == 13, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29946 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29947 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29954 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 4, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29995 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 2, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30010 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 2, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30024 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 1, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30027 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 1, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#30037 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 8, 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" 
+rule "#30048 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 == 3, c5 <= 6.5, c3 <= 4.0, c1 > 2.0, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 12, c5 == 10, 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" 
+rule "#30049 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 == 3, c5 <= 6.5, c3 > 4.0, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 12, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9485 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#30056 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 == 3, c5 > 6.5, c1 > 10.5, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 12, c5 == 2, 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" 
+rule "#30118 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, c5 > 7.5, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 1, 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" 
+rule "#30126 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 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 10, c3 == 6, 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" 
+rule "#30140 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 9, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30143 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 9, c3 == 2, 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" 
+rule "#30184 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, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 11, 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" 
+rule "#30185 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 == 2, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 10, 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" 
+rule "#30186 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, c1 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30188 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 7, 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" 
+rule "#30190 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 == 2, c4 <= 13, c2 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 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" 
+rule "#30198 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 == 1, c1 > 1.0, c4 > 8.0, c2 > 5.0, c3 > 7.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 10, 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" 
+rule "#30201 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30203 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 5, 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" 
+rule "#30206 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 2, 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" 
+rule "#30258 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9637 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#30260 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 11, 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" 
+rule "#30263 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 8, 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" 
+rule "#30264 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 7, 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" 
+rule "#30282 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30288 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30289 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30291 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 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" 
+rule "#30297 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 1, c3 == 12, 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" 
+rule "#30308 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 == 1, c3 > 2.0, c2 <= 7.5, c1 > 2.5, c4 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 1, c3 == 1, 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" 
+rule "#30309 poker_hand = 3 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 <= 11.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#30316 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30332 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 2, 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" 
+rule "#30334 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 12, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30344 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 12, c3 == 3, 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" 
+rule "#30346 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, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 12, c3 == 1, 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" 
+rule "#30351 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 == 1, c4 > 1.0, c2 > 1.5, c5 > 6.0, c1 > 3.5, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 9, 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" 
+rule "#30374 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 == 1, c1 > 5.0, c3 > 1.0, c5 <= 11.0, c2 > 4.5, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 10, c3 == 11, 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" 
+rule "#30384 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 == 1, c3 > 1.0, c1 > 2.5, c2 <= 12, c4 > 4.0, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 10, c3 == 1, 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" 
+rule "#30386 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 9, s2 == 3, 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" 
+rule "#30387 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, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 9, s2 == 2, 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" 
+rule "#30409 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 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30423 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 7, c3 == 4, 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" 
+rule "#30442 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, c1 <= 12.5, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 4, c5 == 12, 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" 
+rule "#30446 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, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 4, c5 == 8, 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" 
+rule "#30484 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 <= 9.0, c4 > 7.0, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 1, c5 == 9, 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" 
+rule "#30485 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 1, c5 == 8, 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" 
+rule "#30502 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 > 1.5, c4 <= 9.5, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 13, c2 == 4, 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" 
+rule "#30507 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 == 3, c5 > 2.0, c2 <= 13, c4 > 3.0, c1 <= 11.0, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 12, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9884 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#30509 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 12, c5 == 10, 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" 
+rule "#30549 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 7, 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" 
+rule "#30567 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 10, c5 == 2, 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" 
+rule "#30572 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30584 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 8, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30589 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 8, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30603 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 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" 
+rule "#30619 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 1, c2 == 1, 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" 
+rule "#30647 poker_hand = 2 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, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 5, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30651 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 11, 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" 
+rule "#30673 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 == 3, c1 <= 13, c4 > 1.0, c3 > 11.0, c5 > 7.0, c2 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9950 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#30675 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 == 3, c1 <= 13, c4 > 1.0, c3 > 11.0, c5 <= 7.0, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30683 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30692 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 2, c2 == 8, 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" 
+rule "#30701 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 1, c2 == 12, 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" 
+rule "#30702 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 1, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30714 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 13, c3 == 12, 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" 
+rule "#30751 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, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30786 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 10, c3 == 11, c5 == 5, 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" 
+rule "#30791 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30798 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 10, c3 == 3, 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" 
+rule "#30806 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 == 3, c2 > 1.0, c1 <= 13, c3 > 9.0, c4 > 2.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10027 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#30807 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, c3 > 1.5, c2 > 6.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30838 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 8, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30850 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 8, c3 == 1, 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" 
+rule "#30851 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 == 1, c4 <= 11.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 13, 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" 
+rule "#30886 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 2, 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" 
+rule "#30892 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30944 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 5, c5 == 6, 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" 
+rule "#30978 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 == 4, c1 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 10, 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" 
+rule "#30997 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 == 3, c5 > 4.0, c4 <= 9.5, c3 > 3.0, c1 <= 7.0, c2 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31001 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 12, 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" 
+rule "#31004 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 == 3, c5 > 4.0, c4 > 9.5, c1 <= 8.0, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 9, 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" 
+rule "#31016 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 == 1, c5 <= 9.0, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 1, c3 == 10, 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" 
+rule "#31024 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 == 1, c5 <= 9.0, c2 > 1.5, c3 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 1, c3 == 2, 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" 
+rule "#31025 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
 	 when
-		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 1, c5 > 9.0, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 1, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#31030 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31046 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 13, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31065 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 12, s3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31066 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 12, s3 == 1, 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" 
+rule "#31089 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 == 4, c1 > 2.0, c4 <= 9.5, c2 > 1.0, c3 > 3.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 10, c1 == 4, 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" 
+rule "#31090 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 == 4, c1 > 2.0, c4 > 9.5, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 10, c1 == 3, 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" 
+rule "#31102 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 9, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31107 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 8, c1 == 12, 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" 
+rule "#31110 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 8, c1 == 9, 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" 
+rule "#31135 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 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31159 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31169 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 13, 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" 
+rule "#31179 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31182 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31194 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 4, c3 == 1, 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" 
+rule "#31198 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 10, 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" 
+rule "#31218 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 == 1, c3 <= 9.5, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31222 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 11, 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" 
+rule "#31252 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, c1 <= 6.5, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 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" 
+rule "#31253 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 == 1, c3 > 9.5, c1 > 5.5, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31272 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 1, c1 == 10, 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" 
+rule "#31275 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 > 7.0, c4 > 2.5, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 1, c1 == 7, 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" 
+rule "#31279 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 1, c1 == 3, 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" 
+rule "#31282 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 13, 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" 
+rule "#31322 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 == 3, c4 <= 12.0, c1 > 2.0, c5 <= 10.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 12, c1 == 10, 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" 
+rule "#31325 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 12, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31366 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 3, 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" 
+rule "#31368 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, c3 > 2.0, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31371 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 10, c3 == 11, 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" 
+rule "#31372 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, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 10, c3 == 10, 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" 
+rule "#31376 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 10, c3 == 6, 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" 
+rule "#31403 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 == 3, c2 <= 11.0, c3 > 2.0, c5 <= 6.0, c1 > 6.5, c4 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 9, c3 == 4, 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" 
+rule "#31404 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 > 6.5, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 9, c3 == 3, 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" 
+rule "#31407 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 13, 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" 
+rule "#31408 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 == 3, c2 > 11.0, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 12, 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" 
+rule "#31410 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31413 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31471 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31473 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31490 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 5, c3 == 5, 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" 
+rule "#31498 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, c4 > 8.5, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 4, c1 == 10, 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" 
+rule "#31505 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#10316 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+rule "#31507 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31509 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31513 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31514 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 7, 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" 
+rule "#31553 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 <= 8.0, c3 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 2, s3 == 4, c1 == 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" 
+rule "#31560 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 == 1, c2 > 2.0, c1 > 1.5, c3 > 4.0, c4 > 6.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 2, s3 == 1, 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" 
+rule "#31580 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 6, 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" 
+rule "#31581 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 5, 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" 
+rule "#31584 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 2, 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" 
+rule "#31593 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 == 4, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 13, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31596 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 13, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31602 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31635 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 11, c3 == 2, 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" 
+rule "#31641 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 == 3, c3 > 1.0, c1 <= 10.0, c2 > 1.0, c5 <= 5.0, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 10, c3 == 9, 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" 
+rule "#31647 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 == 3, c3 > 1.0, c1 <= 10.0, c2 > 1.0, c5 > 5.0, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 10, c3 == 3, 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" 
+rule "#31662 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, c1 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 1, 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" 
+rule "#31697 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, c3 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 3, 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" 
+rule "#31754 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 5, c1 == 9, 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" 
+rule "#31808 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, c5 <= 8.5, c3 > 3.5, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 5, 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" 
+rule "#31811 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, c5 <= 8.5, c3 > 3.5, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31813 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 2, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31823 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31848 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31850 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 1, 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" 
+rule "#31853 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 <= 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 13, c3 == 11, 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" 
+rule "#31855 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, c3 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 13, c3 == 9, 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" 
+rule "#31874 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 == 4, c5 <= 12.5, c3 <= 12.0, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 13, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#31908 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 == 3, c4 > 3.0, c1 <= 9.5, c2 <= 12.5, c3 <= 7.5, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31927 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 9, c5 == 1, 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" 
+rule "#31930 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 8, c3 == 11, 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" 
+rule "#31932 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 == 1, c4 <= 8.0, c5 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 8, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31951 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 8, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31952 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 8, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31966 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31967 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31969 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 10, 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" 
+rule "#31975 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 4, 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" 
+rule "#31999 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, c5 > 4.5, c1 > 8.0, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32001 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 5, c5 == 3, 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" 
+rule "#32012 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 4, c5 == 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" 
+rule "#32023 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 3, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32025 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 3, c3 == 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" 
+rule "#32045 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 10, 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" 
+rule "#32048 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 7, 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" 
+rule "#32064 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 3, 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" 
+rule "#32066 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, c5 > 4.0, c2 > 2.0, c3 > 2.0, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#60 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32070 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 1, c5 == 10, 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" 
+rule "#32081 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 13, c1 == 12, 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" 
+rule "#32087 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 13, c1 == 6, 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" 
+rule "#32091 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 13, c1 == 2, 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" 
+rule "#32095 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 12, c5 == 11, 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" 
+rule "#32098 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 12, c5 == 8, 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" 
+rule "#32107 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 == 2, c4 > 3.0, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 11, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#88 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32109 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 11, c1 == 10, 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" 
+rule "#32115 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 11, c1 == 4, 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" 
+rule "#32120 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 12, 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" 
+rule "#32122 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 10, 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" 
+rule "#32143 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 1, 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" 
+rule "#32156 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 <= 11.0, c3 <= 5.5, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 8, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32165 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 7, c1 == 9, 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" 
+rule "#32182 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 6, c1 == 5, 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" 
+rule "#32183 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 6, c1 == 4, 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" 
+rule "#32221 poker_hand = 3 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#32225 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 13, 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" 
+rule "#32234 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 4, 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" 
+rule "#32235 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 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32251 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32267 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 8, 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" 
+rule "#32268 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 7, 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" 
+rule "#32271 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 4, 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" 
+rule "#32272 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 3, 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" 
+rule "#32292 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 8, 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" 
+rule "#32309 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 3, 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" 
+rule "#32330 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 6, c3 == 2, 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" 
+rule "#32337 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, c5 > 7.5, c1 > 8.5, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 12, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#168 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32341 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 12, c3 == 9, 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" 
+rule "#32346 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 == 3, c1 > 2.5, c2 <= 7.5, c3 <= 13, c5 > 2.5, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 12, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#179 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32349 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 12, c3 == 1, 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" 
+rule "#32375 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 13, 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" 
+rule "#32378 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 == 2, c5 <= 7.0, c3 > 3.5, c1 > 3.5, c2 > 5.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32381 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 7, 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" 
+rule "#32398 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 2, 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" 
+rule "#32429 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 8, c3 == 9, 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" 
+rule "#32435 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 8, c3 == 3, 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" 
+rule "#32440 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 13, c1 == 11, 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" 
+rule "#32463 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 6, c1 == 13, 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" 
+rule "#32475 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#205 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32476 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 5, c3 == 13, 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" 
+rule "#32500 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 5, c3 == 1, 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" 
+rule "#32547 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 4, 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" 
+rule "#32549 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 > 3.0, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#222 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32550 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 1, 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" 
+rule "#32552 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 2, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#228 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32563 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 2, c1 == 1, 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" 
+rule "#32581 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 9, 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" 
+rule "#32589 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 1, 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" 
+rule "#32593 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, c2 > 5.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32611 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 4, 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" 
+rule "#32612 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 3, 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" 
+rule "#32646 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#253 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32649 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 10, c3 == 4, 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" 
+rule "#32657 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 == 1, c1 <= 13, c2 <= 13, c4 > 1.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#273 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32658 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 8, 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" 
+rule "#32659 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 7, 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" 
+rule "#32660 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 6, 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" 
+rule "#32707 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 9, 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" 
+rule "#32708 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 8, 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" 
+rule "#32726 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 2, 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" 
+rule "#32748 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 5, c5 == 9, 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" 
+rule "#32759 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 4, c3 == 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" 
+rule "#32764 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 4, c3 == 6, 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" 
+rule "#32813 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 6, 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" 
+rule "#32814 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, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32821 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 2, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32824 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 2, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32834 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 1, s3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32836 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 13, 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" 
+rule "#32841 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 8, 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" 
+rule "#32912 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 10, c5 == 12, 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" 
+rule "#32926 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 10, c5 == 10, 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" 
+rule "#32932 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 10, c5 == 4, 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" 
+rule "#32933 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 10, c5 == 3, 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" 
+rule "#32956 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#330 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#32973 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 8, c1 == 1, 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" 
+rule "#33058 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 2, 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" 
+rule "#33064 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 > 5.5, c2 > 4.5, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33077 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 4, c5 == 9, 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" 
+rule "#33086 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 13, 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" 
+rule "#33108 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 > 2.0, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33135 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 2, c1 == 1, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33136 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 13, 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" 
+rule "#33145 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, c1 <= 3.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33146 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 3, 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" 
+rule "#33162 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 13, s4 == 4, c5 == 12, 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" 
+rule "#33174 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 13, s4 == 3, 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" 
+rule "#33176 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 13, s4 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33182 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 12, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33202 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 11, c1 == 13, 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" 
+rule "#33208 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33215 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 10, c1 == 13, 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" 
+rule "#33228 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 9, c5 == 13, 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" 
+rule "#33235 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 9, c5 == 6, 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" 
+rule "#33238 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 9, c5 == 3, 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" 
+rule "#33244 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 8, c5 == 10, 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" 
+rule "#33250 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, c3 > 2.5, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 8, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33266 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 7, s1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33271 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 6, c1 == 12, 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" 
+rule "#33277 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 6, c1 == 6, 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" 
+rule "#33281 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33290 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 5, c5 == 6, 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" 
+rule "#33292 poker_hand = 2 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 5, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33310 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33312 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33331 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33333 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 13, 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" 
+rule "#33341 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 5, 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" 
+rule "#33360 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 11, 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" 
+rule "#33361 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 10, 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" 
+rule "#33365 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 6, 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" 
+rule "#33385 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 == 1, c3 <= 5.5, c1 > 2.0, c4 > 3.0, c2 > 4.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 1, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33388 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33400 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 13, c1 == 9, 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" 
+rule "#33412 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)
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 12, c5 == 10, 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" 
+rule "#33419 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)
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 12, c5 == 3, 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" 
+rule "#33421 poker_hand = 2 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)
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 12, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33423 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 12, 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" 
+rule "#33462 poker_hand = 2 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)
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 10, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33488 poker_hand = 6 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 9, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#33512 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 7, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33518 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 7, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33557 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33605 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 2, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33607 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 2, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33612 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 1, s5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33613 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 1, s5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33617 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 12, c1 == 13, 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" 
+rule "#33619 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 12, c1 == 11, 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" 
+rule "#33644 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 11, s1 == 2, 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" 
+rule "#33649 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 10, c1 == 10, 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" 
+rule "#33671 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 9, c5 == 13, 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" 
+rule "#33673 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 9, c5 == 11, 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" 
+rule "#33677 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 9, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#458 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#33715 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 6, 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" 
+rule "#33804 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 3, 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" 
+rule "#33828 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 4, c1 == 5, 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" 
+rule "#33854 poker_hand = 2 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 3, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33885 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 1, c5 == 11, 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" 
+rule "#33889 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 1, c5 == 7, 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" 
+rule "#33918 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 13, c3 == 3, 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" 
+rule "#33949 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, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33951 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 8, 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" 
+rule "#33972 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33973 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34006 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34034 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 7, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34035 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 7, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34036 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 7, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34044 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 7, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34066 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 6, 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" 
+rule "#34086 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 11, 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" 
+rule "#34122 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 4, c3 == 12, 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" 
+rule "#34162 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 2, c5 == 10, 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" 
+rule "#34164 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, c3 <= 12.0, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 2, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34186 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 1, c3 == 11, 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" 
+rule "#34225 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 10, 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" 
+rule "#34235 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 5, c5 == 8, 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" 
+rule "#34243 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, c4 > 1.5, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34244 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 3, 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" 
+rule "#34251 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34254 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 11, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34259 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 11, c5 == 1, 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" 
+rule "#34262 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 10, c5 == 11, 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" 
+rule "#34311 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 11, 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" 
+rule "#34313 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 == 4, c3 <= 11.5, c2 > 11.0, c5 > 3.0, c1 > 7.0, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34334 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 8, c5 == 13, 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" 
+rule "#34336 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 8, c5 == 11, 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" 
+rule "#34353 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 8, c5 == 6, 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" 
+rule "#34357 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 8, c5 == 2, 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" 
+rule "#34384 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 13, 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" 
+rule "#34407 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 2, 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" 
+rule "#34423 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 == 4, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34424 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34462 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 2, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34476 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 4, c5 == 7, 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" 
+rule "#34478 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 4, c5 == 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" 
+rule "#34480 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 == 4, c1 > 1.5, c2 > 3.0, c3 > 12.0, c4 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 4, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34481 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 4, c5 == 2, 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" 
+rule "#34517 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 3, 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" 
+rule "#34531 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 1, 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" 
+rule "#34538 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34548 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 10, 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" 
+rule "#34551 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, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34568 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34599 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 9, 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" 
+rule "#34620 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 13, 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" 
+rule "#34662 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 10, c2 == 8, 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" 
+rule "#34666 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 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 10, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34669 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 10, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34674 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 9, c2 == 9, 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" 
+rule "#34676 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, c2 > 1.0, c3 <= 4.5, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 9, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34696 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 13, 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" 
+rule "#34698 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 == 1, c3 <= 12.5, c5 > 8.5, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34704 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34728 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 6, c2 == 6, 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" 
+rule "#34738 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 == 1, c3 <= 12.5, c5 <= 8.5, c4 <= 7.0, c2 > 3.0, c1 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 5, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#588 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#34763 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 9, 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" 
+rule "#34765 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 7, 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" 
+rule "#34766 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 6, 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" 
+rule "#34816 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 == 3, c2 <= 13, c3 <= 6.5, c1 > 1.5, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34819 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 2, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34826 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 1, c2 == 9, 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" 
+rule "#34827 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 1, c2 == 8, 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" 
+rule "#34828 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 1, c2 == 7, 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" 
+rule "#34837 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 13, c2 == 11, 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" 
+rule "#34847 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 == 2, c5 <= 11.5, c4 > 1.0, c2 > 6.5, c3 <= 11.0, c1 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 13, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34851 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 12, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34852 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 12, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34858 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 12, c2 == 3, 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" 
+rule "#34859 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 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 12, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34862 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34892 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 10, c5 == 7, 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" 
+rule "#34927 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 8, c5 == 10, 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" 
+rule "#34930 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 8, c5 == 7, 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" 
+rule "#34946 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 == 4, c2 > 1.0, c3 <= 10.5, c1 > 6.5, c5 <= 7.5, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 10, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34955 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34957 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 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" 
+rule "#34975 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 5, c5 == 13, 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" 
+rule "#34977 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 5, c5 == 11, 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" 
+rule "#34984 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 == 3, c5 <= 13, c3 <= 10.0, c2 > 8.5, c4 > 2.5, c1 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 5, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34987 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34989 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 12, 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" 
+rule "#35021 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 4, 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" 
+rule "#35022 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 3, 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" 
+rule "#35038 poker_hand = 2 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#672 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#35043 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 3, c2 == 7, 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" 
+rule "#35067 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 9, 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" 
+rule "#35083 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 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" 
+rule "#35102 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 == 4, c1 > 3.0, c4 > 4.0, c2 > 7.5, c3 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35116 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 12, c1 == 10, 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" 
+rule "#35139 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 11, c1 == 12, 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" 
+rule "#35142 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35155 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 9, 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" 
+rule "#35178 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 9, c1 == 11, 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" 
+rule "#35185 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35186 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 9, c1 == 3, 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" 
+rule "#35188 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 9, c1 == 1, 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" 
+rule "#35203 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 11, 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" 
+rule "#35206 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, c2 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35210 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 4, 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" 
+rule "#35226 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 7, c1 == 13, 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" 
+rule "#35234 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 7, c1 == 5, 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" 
+rule "#35237 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 7, c1 == 2, 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" 
+rule "#35242 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 10, 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" 
+rule "#35245 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35248 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35262 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 3, 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" 
+rule "#35267 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, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35269 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 4, c1 == 9, 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" 
+rule "#35277 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 4, c1 == 1, 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" 
+rule "#35285 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 3, c1 == 6, 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" 
+rule "#35287 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 == 1, c5 <= 3.0, c4 <= 9.0, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 3, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35292 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 12, 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" 
+rule "#35295 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 9, 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" 
+rule "#35315 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 == 1, c5 > 3.0, c4 <= 11.5, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35319 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 1, c5 == 10, 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" 
+rule "#35324 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, c1 > 2.5, c5 <= 4.0, c2 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 1, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35325 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 1, c5 == 4, 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" 
+rule "#35343 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 11, 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" 
+rule "#35350 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 4, 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" 
+rule "#35351 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 3, 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" 
+rule "#35365 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 1, 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" 
+rule "#35370 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 12, c5 == 9, 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" 
+rule "#35371 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, c4 <= 5.0, c3 <= 11.5, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 12, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35376 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 12, c5 == 3, 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" 
+rule "#35400 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, c4 > 5.0, c3 > 10.0, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 11, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#794 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#35407 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#35440 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 1, 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" 
+rule "#35492 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 11, 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" 
+rule "#35510 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 5, 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" 
+rule "#35520 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 8, 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" 
+rule "#35521 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, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35528 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 13, 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" 
+rule "#35554 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#826 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#35557 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#828 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#35571 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 7, 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" 
+rule "#35581 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 6, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35598 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35601 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35602 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 4, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35609 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 4, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35628 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35632 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35635 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35652 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35680 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 10, 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" 
+rule "#35700 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 2, 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" 
+rule "#35702 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 13, c5 == 13, 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" 
+rule "#35703 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 13, c5 == 12, 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" 
+rule "#35711 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 13, c5 == 4, 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" 
+rule "#35720 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 12, c1 == 8, 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" 
+rule "#35727 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 == 2, c3 > 2.5, c5 > 12.5, c1 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#864 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#35744 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 10, c1 == 10, 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" 
+rule "#35772 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, c5 <= 9.0, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35775 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 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" 
+rule "#35778 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 2, 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" 
+rule "#35781 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 7, c1 == 12, 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" 
+rule "#35786 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 7, c1 == 7, 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" 
+rule "#35792 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 7, c1 == 1, 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" 
+rule "#35814 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 4, 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" 
+rule "#35853 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, c1 > 5.0, c5 > 4.0, c3 > 3.5, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#895 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#35855 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 4, c1 == 1, 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" 
+rule "#35858 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 11, 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" 
+rule "#35872 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 == 1, c2 <= 10.0, c5 <= 5.5, c1 > 8.5, c3 > 3.0, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35876 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 5, 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" 
+rule "#35891 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35895 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 11, 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" 
+rule "#35896 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 10, 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" 
+rule "#35911 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 == 3, c2 > 1.0, c1 > 1.5, c3 <= 10.5, c4 <= 6.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35913 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 5, 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" 
+rule "#35919 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 12, 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" 
+rule "#35935 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, c4 > 6.0, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#953 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#35978 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 == 1, c3 > 1.0, c5 <= 12.5, c2 <= 11.5, c4 > 11.0, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 10, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35989 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35990 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 3, 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" 
+rule "#36009 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 == 1, c3 > 1.0, c5 <= 12.5, c2 <= 11.5, c4 > 11.0, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#959 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#36010 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 11, c1 == 8, 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" 
+rule "#36016 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 == 4, c2 > 5.0, c1 > 2.0, c3 > 1.0, c5 <= 10.5, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36055 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 9, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36072 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 8, c1 == 9, 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" 
+rule "#36095 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 12, 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" 
+rule "#36097 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 10, 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" 
+rule "#36118 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 1, 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" 
+rule "#36120 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 5, s3 == 3, 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" 
+rule "#36135 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 13, 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" 
+rule "#36143 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 5, 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" 
+rule "#36145 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 3, 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" 
+rule "#36177 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 10, 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" 
+rule "#36194 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 2, c1 == 4, 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" 
+rule "#36255 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 7, 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" 
+rule "#36259 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 == 3, c3 <= 5.5, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36262 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 10, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36313 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 2, 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" 
+rule "#36342 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 8, c2 == 10, 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" 
+rule "#36344 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 8, c2 == 8, 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" 
+rule "#36351 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 == 1, c5 <= 13, c1 > 6.0, c2 > 1.0, c3 <= 11.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 8, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36355 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 10, 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" 
+rule "#36363 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 2, 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" 
+rule "#36365 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 13, 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" 
+rule "#36414 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1064 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#36417 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 10, 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" 
+rule "#36439 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 13, 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" 
+rule "#36447 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 == 1, c2 > 4.0, c1 > 1.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36479 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 2, c2 == 11, 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" 
+rule "#36482 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 == 1, c2 > 4.0, c1 > 1.5, c4 > 3.0, c3 > 2.5, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 2, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36487 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 2, c2 == 3, 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" 
+rule "#36492 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 11, 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" 
+rule "#36494 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 9, 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" 
+rule "#36545 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 12, c2 == 8, 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" 
+rule "#36586 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 4, 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" 
+rule "#36595 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 10, c1 == 8, 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" 
+rule "#36602 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 10, c1 == 1, 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" 
+rule "#36606 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36622 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 6, 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" 
+rule "#36623 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 5, 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" 
+rule "#36624 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 == 1, c2 <= 3.5, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36656 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36676 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36689 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 10, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36693 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36718 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 6, c1 == 9, 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" 
+rule "#36756 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 == 1, c2 > 3.5, c1 > 2.0, c3 > 2.0, c4 <= 12.5, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36764 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36767 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36787 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 3, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#36814 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36818 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 1, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36833 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36840 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36841 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36863 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 3, 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" 
+rule "#36882 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 == 1, c2 > 3.5, c1 > 2.0, c3 > 2.0, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36888 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 11, c5 == 3, 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" 
+rule "#36893 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 10, c2 == 11, 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" 
+rule "#36904 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 9, c2 == 13, 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" 
+rule "#36941 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 == 3, c2 > 2.0, c1 <= 9.0, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 7, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36952 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 6, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37010 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 3, c2 == 9, 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" 
+rule "#37020 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 12, 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" 
+rule "#37022 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 10, 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" 
+rule "#37026 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 6, 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" 
+rule "#37043 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 1, 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" 
+rule "#37045 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 12, 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" 
+rule "#37047 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 10, 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" 
+rule "#37079 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 2, 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" 
+rule "#37081 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 == 2, c4 > 6.5, c5 > 1.5, c3 > 3.0, c1 > 4.0, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 13, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1211 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#37088 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 13, c5 == 6, 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" 
+rule "#37089 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 13, c5 == 5, 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" 
+rule "#37093 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 13, c5 == 1, 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" 
+rule "#37124 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 7, 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" 
+rule "#37125 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 6, 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" 
+rule "#37126 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37133 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 11, c5 == 11, 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" 
+rule "#37138 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 11, c5 == 6, 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" 
+rule "#37147 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 10, c2 == 10, 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" 
+rule "#37151 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 == 1, c2 > 1.5, c1 <= 8.5, c4 > 1.0, c3 > 11.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 10, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37171 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 8, c2 == 5, c5 == 8, 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" 
+rule "#37193 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 7, c2 == 3, 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" 
+rule "#37196 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37223 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37226 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 5, c5 == 8, 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" 
+rule "#37258 poker_hand = 2 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37259 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 3, c5 == 13, 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" 
+rule "#37264 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, c2 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 3, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37272 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 2, c5 == 13, 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" 
+rule "#37301 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 13, s1 == 1, 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" 
+rule "#37318 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 11, c2 == 10, 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" 
+rule "#37324 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 11, c2 == 4, 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" 
+rule "#37327 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 11, c2 == 1, 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" 
+rule "#37332 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 10, c2 == 9, 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" 
+rule "#37342 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 8, c2 == 13, 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" 
+rule "#37375 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, c3 <= 8.0, c5 <= 4.0, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 7, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37392 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37420 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37449 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 5, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37452 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 5, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37455 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37473 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37491 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37501 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 2, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37512 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 1, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37516 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37518 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37547 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 8, 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" 
+rule "#37550 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 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" 
+rule "#37555 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 12, c1 == 13, 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" 
+rule "#37560 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 <= 4.5, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37569 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 11, s2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37570 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 11, s2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37571 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 11, s2 == 1, 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" 
+rule "#37575 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 == 2, c2 <= 12.0, c3 > 1.0, c4 > 11.5, c1 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37576 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 10, c1 == 9, 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" 
+rule "#37582 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 <= 2.5, c4 <= 9.5, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 10, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37584 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 10, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37593 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 9, c2 == 5, 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" 
+rule "#37595 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 9, c2 == 3, 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" 
+rule "#37618 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 8, c1 == 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" 
+rule "#37619 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 8, c1 == 4, 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" 
+rule "#37629 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, c3 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37648 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37651 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37666 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37667 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37719 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 4, 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" 
+rule "#37720 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 3, 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" 
+rule "#37723 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 3, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1371 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#37727 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 3, c1 == 9, 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" 
+rule "#37757 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 2, c1 == 4, 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" 
+rule "#37768 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, c4 > 7.0, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 1, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37770 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37780 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 13, c1 == 7, 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" 
+rule "#37784 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 13, c1 == 3, 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" 
+rule "#37790 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 10, 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" 
+rule "#37805 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 11, c1 == 8, 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" 
+rule "#37826 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 10, c1 == 12, 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" 
+rule "#37830 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 == 1, c5 <= 2.0, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37831 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 10, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37833 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37867 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37896 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 8, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37897 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 8, c1 == 3, 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" 
+rule "#37900 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 == 4, c1 > 2.0, c2 <= 9.0, c3 > 1.5, c5 <= 9.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 7, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37901 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 7, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37905 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 7, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37907 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 7, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37943 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 7, 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" 
+rule "#37954 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 == 4, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38005 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 3, c2 == 8, 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" 
+rule "#38009 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 == 3, c4 <= 3.0, c1 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 3, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38035 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 11, c1 == 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" 
+rule "#38040 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 10, 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" 
+rule "#38043 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38073 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 1, s1 == 4, c1 == 2, 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" 
+rule "#38077 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, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 1, s1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1454 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#38079 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 13, s1 == 3, 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" 
+rule "#38096 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 <= 3.5, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38121 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 10, c5 == 12, 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" 
+rule "#38127 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 10, c5 == 6, 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" 
+rule "#38134 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 > 2.0, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 9, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38136 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 9, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38142 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 9, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38151 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38158 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 4, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38169 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38175 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 13, c5 == 9, 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" 
+rule "#38187 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38188 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 8, 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" 
+rule "#38204 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38209 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38214 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38244 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38248 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 5, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38262 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 5, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38272 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38292 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38293 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 2, 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" 
+rule "#38307 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 3, c5 == 13, 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" 
+rule "#38352 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 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" 
+rule "#38357 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 13, 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" 
+rule "#38420 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#1494 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#38438 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 6, 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" 
+rule "#38446 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 4, c1 == 7, 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" 
+rule "#38456 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 11, s3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38457 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 11, s3 == 3, 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" 
+rule "#38459 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 11, s3 == 1, s4 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38460 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 11, s3 == 1, s4 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38477 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38478 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 10, 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" 
+rule "#38482 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 6, 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" 
+rule "#38491 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 10, 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" 
+rule "#38516 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 10, 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" 
+rule "#38520 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 6, 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" 
+rule "#38525 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 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1522 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#38528 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 7, c3 == 11, 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" 
+rule "#38537 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 7, c3 == 2, 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" 
+rule "#38544 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 == 3, c1 > 4.0, c5 > 4.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1550 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#38561 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 6, c1 == 3, 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" 
+rule "#38564 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 13, 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" 
+rule "#38568 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1557 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#38586 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38610 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 4, 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" 
+rule "#38620 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 7, 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" 
+rule "#38649 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 4, 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" 
+rule "#38654 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, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 13, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38665 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 13, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38678 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 12, c5 == 8, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38697 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 11, c1 == 10, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38707 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 11, c1 == 9, 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" 
+rule "#38716 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 == 3, c1 > 1.0, c2 > 1.5, c3 <= 12.0, c5 > 12.5, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38719 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 10, 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" 
+rule "#38758 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 9, c1 == 8, 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" 
+rule "#38766 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 8, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38803 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38813 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 6, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38816 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 6, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38829 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38862 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38864 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38865 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 2, 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" 
+rule "#38889 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, c3 > 8.5, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 2, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38892 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 2, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38898 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 8, 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" 
+rule "#38899 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 7, 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" 
+rule "#38938 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 == 1, c4 <= 3.0, c2 > 2.0, c1 > 3.0, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 13, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38941 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 13, c1 == 2, 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" 
+rule "#38957 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 12, c1 == 11, 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" 
+rule "#38982 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 11, 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" 
+rule "#38984 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 9, 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" 
+rule "#38990 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 == 3, c1 <= 2.0, c2 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38999 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 10, c1 == 7, 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" 
+rule "#39005 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 == 1, c5 <= 8.5, c1 > 2.0, c2 <= 12.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 10, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39030 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 1, 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" 
+rule "#39055 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 1, 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" 
+rule "#39074 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 7, 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" 
+rule "#39080 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 1, 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" 
+rule "#39102 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 8, c1 == 9, 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" 
+rule "#39122 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 5, c1 == 9, 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" 
+rule "#39126 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 5, c1 == 5, 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" 
+rule "#39141 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 == 2, c5 > 1.0, c3 <= 11.5, c2 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1660 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#39143 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, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39149 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39164 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39183 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39185 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 10, 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" 
+rule "#39214 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 6, 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" 
+rule "#39222 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 == 4, c5 > 1.0, c3 > 2.0, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 12, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39224 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 12, c5 == 9, 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" 
+rule "#39234 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 11, c1 == 12, 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" 
+rule "#39237 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 == 3, c2 <= 12.5, c3 <= 12.0, c1 > 2.0, c4 <= 2.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39240 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 11, c1 == 6, 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" 
+rule "#39261 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 9, c1 == 11, 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" 
+rule "#39271 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 > 1, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 9, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39305 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 4, 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" 
+rule "#39311 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 7, s4 == 2, 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" 
+rule "#39312 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 7, s4 == 1, 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" 
+rule "#39345 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, c2 > 2.0, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39346 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39373 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 4, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39381 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39404 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 2, c5 == 10, 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" 
+rule "#39405 poker_hand = 2 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 2, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39430 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 1, c1 == 9, 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" 
+rule "#39434 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 1, c1 == 5, 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" 
+rule "#39441 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 13, c1 == 11, 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" 
+rule "#39444 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 13, c1 == 8, 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" 
+rule "#39455 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 == 1, c3 > 2.0, c5 <= 13, c4 > 2.0, c1 > 2.0, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39472 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 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" 
+rule "#39476 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 1, 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" 
+rule "#39484 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39485 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39492 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 10, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39521 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39525 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39543 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 8, c1 == 10, 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" 
+rule "#39550 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 8, c1 == 3, 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" 
+rule "#39583 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 4, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39588 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39604 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 12, 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" 
+rule "#39627 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 1, 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" 
+rule "#39629 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 4, c1 == 12, 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" 
+rule "#39682 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 9, 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" 
+rule "#39684 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 7, 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" 
+rule "#39690 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 1, 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" 
+rule "#39714 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 13, c3 == 3, 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" 
+rule "#39724 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39748 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 11, c3 == 7, 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" 
+rule "#39770 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39774 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 6, 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" 
+rule "#39775 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 5, 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" 
+rule "#39777 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 3, 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" 
+rule "#39781 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39787 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 9, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39788 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 9, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39800 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 8, c3 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39815 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39816 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 8, c3 == 2, 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" 
+rule "#39827 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 7, c3 == 4, 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" 
+rule "#39868 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 1, 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" 
+rule "#39874 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, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 4, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1820 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#39881 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 4, c1 == 1, 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" 
+rule "#39883 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 12, 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" 
+rule "#39937 poker_hand = 2 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 2, c1 == 4, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39946 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 11, 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" 
+rule "#39966 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 == 3, c3 > 9.5, c1 > 6.0, c2 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39968 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 1, 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" 
+rule "#39984 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 13, c5 == 10, 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" 
+rule "#40004 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 13, c5 == 2, 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" 
+rule "#40006 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40034 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40036 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40039 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40062 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 11, c5 == 6, 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" 
+rule "#40125 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 == 1, c1 > 2.0, c4 > 11, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40127 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40144 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40146 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40150 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40155 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 7, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40173 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40178 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40192 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 2, 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" 
+rule "#40217 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 2, 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" 
+rule "#40241 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 4, 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" 
+rule "#40270 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 13, 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" 
+rule "#40290 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 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" 
+rule "#40291 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 == 2, c2 > 3.0, c5 > 2.0, c1 <= 12.5, c3 > 3.0, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40293 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 2, 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" 
+rule "#40316 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 12, c1 == 4, 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" 
+rule "#40320 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 11, c5 == 13, 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" 
+rule "#40324 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 == 3, c5 > 1.0, c4 <= 11.0, c1 <= 3.0, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1913 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#40332 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 == 3, c5 > 1.0, c4 <= 11.0, c1 > 3.0, c2 > 6.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 11, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40363 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 9, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40379 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 8, c5 == 5, 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" 
+rule "#40402 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 7, 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" 
+rule "#40418 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 3, 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" 
+rule "#40433 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 6, c5 == 1, 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" 
+rule "#40494 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 1, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40508 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 13, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40535 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 5, 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" 
+rule "#40536 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 4, 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" 
+rule "#40545 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 11, c1 == 8, 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" 
+rule "#40546 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 11, c1 == 7, 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" 
+rule "#40567 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1954 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#40602 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 13, 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" 
+rule "#40648 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 8, c1 == 4, 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" 
+rule "#40668 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 9, c1 == 13, 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" 
+rule "#40681 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 == 1, c3 > 1.5, c4 > 2.5, c1 > 7.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1970 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#40725 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 == 1, c3 > 1.5, c4 > 2.5, c1 > 7.0, c2 > 6.5, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40740 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40746 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 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" 
+rule "#40756 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 8, 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" 
+rule "#40796 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 2, c5 == 9, 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" 
+rule "#40797 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 == 2, c3 <= 6.5, c4 > 1.0, c2 > 3.0, c1 <= 9.0, c5 <= 8, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 2, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2011 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#40800 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 == 2, c3 > 6.5, c2 <= 11.5, c1 > 7.0, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 2, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2017 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#40817 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 1, c1 == 11, c5 == 3, 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" 
+rule "#40822 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 1, c1 == 8, 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" 
+rule "#40826 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 1, c1 == 4, 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" 
+rule "#40854 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 1, 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" 
+rule "#40871 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 11, s3 == 1, 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" 
+rule "#40878 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 <= 10.0, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40879 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40885 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40886 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40903 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 8, 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" 
+rule "#40943 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 4, 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" 
+rule "#40947 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, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 7, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40956 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 7, c5 == 4, 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" 
+rule "#40957 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 7, c5 == 3, 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" 
+rule "#40992 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 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" 
+rule "#41000 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 10, 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" 
+rule "#41009 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41010 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41013 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41024 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 3, c3 == 12, 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" 
+rule "#41027 poker_hand = 2 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 3, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41028 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 3, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41051 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 2, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41064 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 1, c3 == 10, 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" 
+rule "#41112 poker_hand = 2 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)
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41115 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 9, 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" 
+rule "#41157 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)
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 4, 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" 
+rule "#41164 poker_hand = 2 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)
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41170 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 10, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41202 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 9, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41204 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41210 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41211 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 8, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41215 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 8, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41225 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41229 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 7, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41242 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 6, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41256 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41264 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 4, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41278 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41280 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41295 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 1, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41342 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 11, 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" 
+rule "#41367 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 11, c5 == 11, 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" 
+rule "#41378 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 13, 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" 
+rule "#41400 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, c5 > 2.5, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41405 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 11, 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" 
+rule "#41409 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 7, 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" 
+rule "#41410 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 6, 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" 
+rule "#41411 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 > 3.0, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41448 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41451 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 2, 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" 
+rule "#41485 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 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" 
+rule "#41488 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 2, 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" 
+rule "#41503 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 12, 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" 
+rule "#41504 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 11, 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" 
+rule "#41523 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 5, c3 == 5, 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" 
+rule "#41531 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 4, c3 == 10, 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" 
+rule "#41533 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 4, c3 == 8, 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" 
+rule "#41535 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 4, c3 == 6, 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" 
+rule "#41550 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, c4 <= 13, c1 <= 12, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 4, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41555 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41569 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41575 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 8, c5 == 8, 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" 
+rule "#41583 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41622 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 2, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41626 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 2, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41630 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 13, c1 == 11, 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" 
+rule "#41634 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 13, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41642 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41647 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 12, c1 == 7, 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" 
+rule "#41649 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, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41700 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41705 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 10, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41744 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 9, 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" 
+rule "#41773 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 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" 
+rule "#41794 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 == 4, c5 > 3.5, c2 <= 3.0, c4 > 6.5, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 7, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41810 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 6, c5 == 6, 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" 
+rule "#41825 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 == 4, c5 > 3.5, c2 > 3.0, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 6, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41828 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 5, c5 == 13, 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" 
+rule "#41860 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 == 2, c3 > 3.0, c5 > 10.5, c1 > 3.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41861 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 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" 
+rule "#41863 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 3, 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" 
+rule "#41877 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41883 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 3, c1 == 8, 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" 
+rule "#41888 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 3, c1 == 3, 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" 
+rule "#41892 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41914 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41939 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41952 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 13, c3 == 2, 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" 
+rule "#41953 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 13, c3 == 1, 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" 
+rule "#41963 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 12, c3 == 4, 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" 
+rule "#41976 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 11, c5 == 4, 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" 
+rule "#41981 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 10, c5 == 12, 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" 
+rule "#42001 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 9, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42002 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 9, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42006 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42019 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 7, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42035 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42037 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 8, 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" 
+rule "#42072 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 11, 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" 
+rule "#42094 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 1, 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" 
+rule "#42129 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 1, c3 == 5, 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" 
+rule "#42145 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 == 1, c4 > 1.0, c2 <= 13, c1 > 1.5, c3 <= 13, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42146 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 13, c1 == 1, 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" 
+rule "#42185 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 1, 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" 
+rule "#42190 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 == 3, c3 <= 2.5, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42203 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 8, c1 == 9, 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" 
+rule "#42253 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 9, 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" 
+rule "#42282 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 5, c1 == 5, 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" 
+rule "#42303 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 9, 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" 
+rule "#42306 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 6, 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" 
+rule "#42335 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 1, 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" 
+rule "#42365 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 8, 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" 
+rule "#42372 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 1, 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" 
+rule "#42394 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, c1 <= 9.0, c2 <= 12.5, c4 > 2.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42397 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 1, 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" 
+rule "#42416 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 1, c5 == 7, 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" 
+rule "#42420 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 1, c5 == 3, 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" 
+rule "#42426 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, c2 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42446 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 2, 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" 
+rule "#42459 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, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 12, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42465 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 11, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42467 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 11, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42470 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 11, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42487 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 10, c1 == 12, 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" 
+rule "#42488 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 10, c1 == 11, 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" 
+rule "#42493 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 10, c1 == 6, 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" 
+rule "#42494 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 10, c1 == 5, 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" 
+rule "#42505 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 7, 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" 
+rule "#42540 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 8, c1 == 9, 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" 
+rule "#42545 poker_hand = 0 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 8, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42563 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42592 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 6, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42613 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42644 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42663 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 10, 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" 
+rule "#42671 poker_hand = 0 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42672 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 1, 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" 
+rule "#42701 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 1, c1 == 11, 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" 
+rule "#42703 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 == 3, c4 > 3.5, c1 > 1.5, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42713 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 12, 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" 
+rule "#42727 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 == 2, c2 <= 12.5, c3 > 2.0, c1 <= 11.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42732 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42754 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42770 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42795 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42796 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42798 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 1, 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" 
+rule "#42803 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 9, 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" 
+rule "#42804 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 8, 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" 
+rule "#42823 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2410 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#42827 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 9, c3 == 10, 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" 
+rule "#42831 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 9, c3 == 6, 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" 
+rule "#42839 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 8, c5 == 11, 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" 
+rule "#42843 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 8, c5 == 7, 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" 
+rule "#42849 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 8, c5 == 1, 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" 
+rule "#42856 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 == 3, c3 > 3.0, c5 <= 12.0, c1 > 2.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42862 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 7, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42868 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 8, 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" 
+rule "#42873 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 3, 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" 
+rule "#42877 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 5, c3 == 12, 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" 
+rule "#42878 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 5, c3 == 11, 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" 
+rule "#42881 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 5, c3 == 8, 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" 
+rule "#42900 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 == 1, c2 > 10.5, c1 > 8.0, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 5, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42903 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 4, c5 == 11, 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" 
+rule "#42912 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 4, c5 == 2, 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" 
+rule "#42928 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 > 4.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 3, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42929 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 3, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42943 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 2, c3 == 9, 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" 
+rule "#42975 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 1, c3 == 2, 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" 
+rule "#42976 poker_hand = 3 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 1, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#42991 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 12, c3 == 12, 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" 
+rule "#42992 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 == 3, c2 <= 11.5, c4 > 11.0, c5 > 7.5, c3 <= 8.5, c1 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43000 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 12, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43017 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 11, 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" 
+rule "#43034 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 6, 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" 
+rule "#43035 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 5, 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" 
+rule "#43055 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 10, 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" 
+rule "#43058 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, c4 > 3.0, c1 <= 12.0, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2508 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#43074 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 3, 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" 
+rule "#43075 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 2, 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" 
+rule "#43077 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, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 9, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43081 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 9, c3 == 9, 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" 
+rule "#43094 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 8, c3 == 9, 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" 
+rule "#43139 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, c3 <= 12.5, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43149 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 6, c3 == 4, 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" 
+rule "#43162 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 5, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2528 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#43186 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 == 1, c1 <= 9.5, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2540 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#43206 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 10, 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" 
+rule "#43215 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 1, 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" 
+rule "#43217 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 2, c3 == 12, 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" 
+rule "#43220 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 2, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43221 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 2, c3 == 8, 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" 
+rule "#43223 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 2, c3 == 6, 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" 
+rule "#43224 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 2, c3 == 5, 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" 
+rule "#43232 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 10, 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" 
+rule "#43234 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43236 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 6, 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" 
+rule "#43275 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 4, 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" 
+rule "#43281 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 11, 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" 
+rule "#43300 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 4, 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" 
+rule "#43320 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2592 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#43345 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 9, 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" 
+rule "#43351 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 3, 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" 
+rule "#43369 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 9, c1 == 10, 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" 
+rule "#43383 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 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 8, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2607 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#43392 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 7, c3 == 13, 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" 
+rule "#43417 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 6, c1 == 13, 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" 
+rule "#43423 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 6, c1 == 7, 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" 
+rule "#43527 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 1, 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" 
+rule "#43545 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 2, c1 == 9, 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" 
+rule "#43551 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 == 2, c3 <= 10.5, c5 <= 12.5, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 2, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2629 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#43566 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 1, c1 == 13, 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" 
+rule "#43604 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 10, c3 == 3, 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" 
+rule "#43609 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 7, 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" 
+rule "#43611 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 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" 
+rule "#43616 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 12, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2639 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#43635 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 12, c1 == 6, 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" 
+rule "#43644 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 11, c3 == 10, 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" 
+rule "#43674 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 5, 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" 
+rule "#43700 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 4, 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" 
+rule "#43715 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 7, c1 == 3, 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" 
+rule "#43716 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 7, c1 == 2, 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" 
+rule "#43732 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 5, c3 == 12, 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" 
+rule "#43735 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 5, c3 == 9, 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" 
+rule "#43736 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 5, c3 == 8, 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" 
+rule "#43739 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 == 2, c5 > 2.0, c4 <= 12.0, c2 > 3.0, c1 > 3.0, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 5, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43742 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 5, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43744 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 13, 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" 
+rule "#43745 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 12, 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" 
+rule "#43747 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 10, 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" 
+rule "#43781 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 3, c3 == 1, 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" 
+rule "#43785 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 2, c3 == 10, 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" 
+rule "#43803 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 5, 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" 
+rule "#43804 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 4, 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" 
+rule "#43806 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, c3 > 4.0, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43829 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 13, c1 == 4, 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" 
+rule "#43830 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 13, c1 == 3, 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" 
+rule "#43841 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 11, c1 == 6, 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" 
+rule "#43843 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, c5 > 4.0, c2 > 3.0, c3 > 6.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 11, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43848 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 10, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43856 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 10, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43861 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43878 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43894 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 3, c5 == 1, 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" 
+rule "#43896 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 1, 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" 
+rule "#43897 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 8, c1 == 13, 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" 
+rule "#43898 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 8, c1 == 12, 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" 
+rule "#43900 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 8, c1 == 10, 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" 
+rule "#43913 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 10, 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" 
+rule "#43919 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 4, 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" 
+rule "#43928 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 6, c1 == 8, 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" 
+rule "#43937 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 == 2, c3 > 10.0, c2 > 3.0, c1 <= 3.5, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43941 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43949 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 13, 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" 
+rule "#43952 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 == 1, c4 <= 6.0, c2 <= 4.5, c1 <= 12, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43966 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 3, c5 == 9, 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" 
+rule "#43989 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 11, 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" 
+rule "#43996 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 4, 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" 
+rule "#43997 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 == 3, c3 > 2.0, c1 > 3.5, c2 > 2.0, c5 <= 13, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43999 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44001 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44022 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 13, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44031 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 8, 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" 
+rule "#44076 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 12, 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" 
+rule "#44079 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 == 1, c5 <= 13, c2 <= 13, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44082 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44099 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 1, 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" 
+rule "#44145 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 == 4, c4 > 6.0, c5 > 8.0, c2 <= 8.5, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 11, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44158 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 4, 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" 
+rule "#44173 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 8, c3 == 2, 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" 
+rule "#44177 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 7, c1 == 11, 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" 
+rule "#44179 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 7, c1 == 9, 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" 
+rule "#44183 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, c1 > 2.0, c3 > 5.5, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2837 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#44189 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 == 1, c1 <= 1.5, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44210 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44215 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 5, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44218 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 5, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44220 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 5, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44255 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44276 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 2, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44283 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 2, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44294 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 1, c3 == 8, 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" 
+rule "#44337 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 12, c3 == 3, 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" 
+rule "#44339 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 12, c3 == 1, 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" 
+rule "#44361 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 == 3, c4 <= 3.0, c3 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 4, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44375 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44404 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 11, 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" 
+rule "#44420 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 == 3, c4 > 3.0, c1 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44421 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44422 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44442 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44446 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 7, 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" 
+rule "#44449 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44520 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44524 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 4, 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" 
+rule "#44526 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 2, 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" 
+rule "#44529 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 3, c3 == 12, 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" 
+rule "#44530 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 3, c3 == 11, 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" 
+rule "#44537 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 3, c3 == 4, 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" 
+rule "#44575 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, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 2, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44595 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44601 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44610 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 6, 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" 
+rule "#44620 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 3, c1 == 6, 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" 
+rule "#44683 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 6, 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" 
+rule "#44685 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 4, 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" 
+rule "#44693 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 == 3, c5 > 9.0, c1 > 1.5, c3 <= 4.5, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44703 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 10, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44709 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44743 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 9, c3 == 2, 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" 
+rule "#44747 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44748 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44774 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 4, 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" 
+rule "#44804 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 6, c1 == 11, 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" 
+rule "#44814 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44843 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 4, c1 == 10, 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" 
+rule "#44844 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 4, c1 == 9, 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" 
+rule "#44849 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 4, c1 == 4, 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" 
+rule "#44866 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 10, c3 == 3, 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" 
+rule "#44871 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 7, 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" 
+rule "#44875 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, c4 > 3.5, c2 > 4.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2949 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#44881 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2950 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#44885 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 2, c3 == 6, 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" 
+rule "#44890 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 2, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44894 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 1, c1 == 10, 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" 
+rule "#44899 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 1, c1 == 5, 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" 
+rule "#44965 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 == 4, c3 <= 8.0, c1 > 3.0, c2 <= 11.0, c4 > 4.5, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44974 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44978 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45025 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 7, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45050 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 6, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#45052 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 6, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45054 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 6, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45056 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 5, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45071 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45073 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 4, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45077 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45095 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 2, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45098 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 2, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45100 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 2, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45105 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 2, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45110 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 1, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#45111 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 1, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 12, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 12, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 12, c1 == 4, 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(c4 == 13, c3 == 13, c2 == 12, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 11, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 11, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 10, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 10, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 10, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 10, c1 == 7, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 10, c1 == 7, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#48 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#53 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 9, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#54 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 9, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#56 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 9, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#62 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 9, c5 == 8, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#63 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 9, c5 == 8, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#71 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 9, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#74 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 9, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#75 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 9, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#76 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 9, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#79 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 7, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#80 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 7, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#83 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 7, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#84 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 7, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#93 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 7, c5 == 4, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#97 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 7, c5 == 4, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 7, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#109 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 6, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 6, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#114 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 6, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#125 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 5, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#131 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 3, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#135 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 3, c1 == 9, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#138 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 3, c1 == 9, c5 == 9, 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(c4 == 13, c3 == 13, c2 == 3, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#150 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#152 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 3, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#154 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 3, c1 == 1, 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(c4 == 13, c3 == 13, c2 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#157 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#159 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 2, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#162 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 2, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#167 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 2, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#172 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 1, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#179 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 13, c2 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#185 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 11, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#188 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 11, c1 == 10, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#192 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 11, c1 == 10, c2 == 7, 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" 
+rule "#194 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 == 4, c3 <= 8.0, c1 > 3.0, c2 > 11.0, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 11, c1 == 10, c2 == 5, 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" 
+rule "#201 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 == 4, c3 > 8.0, c5 > 5.0, c1 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 11, c1 == 7, 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" 
+rule "#206 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 11, c1 == 2, 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" 
+rule "#212 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 9, 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" 
+rule "#216 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 6, c1 == 12, 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" 
+rule "#226 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 > 1.0, c3 <= 12.0, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2994 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#229 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 > 1.0, c3 > 12.0, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 4, 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" 
+rule "#230 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 10, c2 == 3, 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" 
+rule "#233 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, c1 > 1.0, c5 > 1.5, c3 <= 4.5, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 9, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#234 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 9, c1 == 12, 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" 
+rule "#238 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, c3 > 3.0, c1 > 4.5, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 9, c1 == 8, 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" 
+rule "#246 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 8, c1 == 13, 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" 
+rule "#248 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)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 8, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#250 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 8, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#253 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 8, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 8, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#259 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 13, 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" 
+rule "#261 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 11, 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" 
+rule "#262 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.0, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 10, 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" 
+rule "#263 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, c1 > 7.0, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 9, 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" 
+rule "#264 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 8, 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" 
+rule "#265 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 7, 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" 
+rule "#266 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)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#267 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#268 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 4, 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" 
+rule "#270 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 7, c1 == 2, 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" 
+rule "#276 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 == 4, c2 > 1.0, c3 <= 13, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 6, c1 == 9, c2 == 13, 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" 
+rule "#287 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 == 3, c1 > 1.5, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 6, c1 == 9, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#289 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 6, c1 == 8, 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" 
+rule "#291 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 == 3, c1 > 1.5, c2 <= 13, c4 <= 12.0, c3 > 1.0, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 6, c1 == 6, 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" 
+rule "#293 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 == 3, c1 > 1.5, c2 <= 13, c4 <= 12.0, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 6, c1 == 4, 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" 
+rule "#297 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, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 5, c1 == 13, 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" 
+rule "#299 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, c4 > 3.5, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 5, c1 == 11, 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" 
+rule "#300 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, c4 > 3.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#301 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#304 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 5, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#306 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 5, c1 == 4, 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" 
+rule "#308 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 > 5.0, c4 <= 9.0, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 5, c1 == 2, 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" 
+rule "#311 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, c3 > 11.0, c2 > 5.0, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#314 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 9, 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" 
+rule "#315 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 > 1.0, c4 <= 1.0, c5 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 8, 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" 
+rule "#316 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 7, c1 == 13, 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" 
+rule "#323 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 7, c1 == 6, 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" 
+rule "#332 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3096 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#334 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 2, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#337 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 2, c1 == 9, 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" 
+rule "#341 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, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 2, c1 == 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" 
+rule "#346 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 4, c2 == 1, 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" 
+rule "#347 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.5, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 3, c1 == 13, 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" 
+rule "#352 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 3, c1 == 8, 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" 
+rule "#363 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 3, c1 == 7, c2 == 3, 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" 
+rule "#365 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, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 3, c1 == 7, c2 == 1, 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" 
+rule "#376 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)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3133 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#378 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 2, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#383 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 2, c1 == 2, 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" 
+rule "#387 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 > 5.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 1, c1 == 11, 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" 
+rule "#388 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 <= 5.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 1, c1 == 10, 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" 
+rule "#392 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 1, c1 == 6, 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" 
+rule "#396 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 1, c1 == 2, 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" 
+rule "#397 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 12, c5 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3168 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#400 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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#3169 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#401 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, c2 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 13, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#410 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 13, c1 == 7, c2 == 7, 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" 
+rule "#416 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 13, c1 == 7, c2 == 1, 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" 
+rule "#418 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 == 4, c3 > 2.0, c2 > 6.5, c5 <= 9.0, c4 > 1.0, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 13, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#420 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 13, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 13, c1 == 2, 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" 
+rule "#422 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, c5 > 9.0, c1 <= 10.0, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 13, c1 == 1, 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" 
+rule "#424 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 == 4, c3 > 2.0, c2 > 6.5, c5 > 9.0, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 11, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#425 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 11, c1 == 12, 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" 
+rule "#429 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 == 4, c3 <= 2.0, c2 > 5.0, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#434 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 11, c1 == 3, 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" 
+rule "#438 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#439 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 11, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#443 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 11, c2 == 9, 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" 
+rule "#449 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 > 5.0, c1 > 2.0, c3 > 5.5, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 11, c2 == 3, 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" 
+rule "#455 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 > 5.0, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 9, c2 == 11, 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" 
+rule "#458 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 9, c2 == 8, 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" 
+rule "#461 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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 9, c2 == 5, 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(c4 == 13, c3 == 11, c5 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#472 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 10, c1 == 2, 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" 
+rule "#474 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, c1 <= 7.0, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 9, c1 == 13, 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" 
+rule "#476 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 9, c1 == 11, 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" 
+rule "#478 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 9, c1 == 9, 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" 
+rule "#481 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, c1 > 3.5, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 9, c1 == 6, 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" 
+rule "#482 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3235 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#485 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 > 5.5, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 9, c1 == 2, 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" 
+rule "#486 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, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 9, c1 == 1, 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" 
+rule "#489 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 8, c2 == 11, 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" 
+rule "#492 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 8, c2 == 10, c1 == 11, 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" 
+rule "#493 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, c4 <= 12.0, c1 <= 7.5, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 8, c2 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#500 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 8, c2 == 10, c1 == 3, 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" 
+rule "#503 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, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 8, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3269 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#505 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 8, c2 == 7, 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" 
+rule "#506 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 8, c2 == 6, 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" 
+rule "#508 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 8, c2 == 4, 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" 
+rule "#511 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, c1 <= 2.0, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 8, c2 == 1, 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" 
+rule "#512 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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#515 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 10, 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" 
+rule "#516 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 > 4.0, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 9, 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" 
+rule "#520 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 > 4.0, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#525 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 5, c1 == 8, 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" 
+rule "#534 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 == 3, c4 > 4.0, c1 > 2.0, c2 <= 1.0, c3 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 4, c1 == 12, 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" 
+rule "#542 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#546 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 3, 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" 
+rule "#548 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 1, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#556 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 7, c2 == 1, c1 == 5, 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" 
+rule "#561 poker_hand = 2 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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#562 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 12, 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" 
+rule "#563 poker_hand = 2 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 <= 11.0, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#566 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 8, 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" 
+rule "#569 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#575 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 7, c2 == 5, 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" 
+rule "#581 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, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#582 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#591 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 2, c2 == 6, 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" 
+rule "#594 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, c2 > 3.5, c3 <= 7.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 2, c2 == 3, 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" 
+rule "#597 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, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 6, c1 == 1, 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" 
+rule "#599 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, c5 <= 4.5, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 5, c1 == 12, 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" 
+rule "#600 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 5, c1 == 11, 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(c4 == 13, c3 == 11, c5 == 5, c1 == 4, 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" 
+rule "#608 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 5, c1 == 3, 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" 
+rule "#609 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 5, c1 == 2, 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" 
+rule "#612 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 5, c1 == 1, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#619 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 5, c1 == 1, c2 == 4, 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" 
+rule "#623 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 4, c2 == 13, 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(c4 == 13, c3 == 11, c5 == 4, c2 == 12, c1 == 13, 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(c4 == 13, c3 == 11, c5 == 4, c2 == 12, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#636 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 4, c2 == 12, c1 == 1, 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" 
+rule "#637 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 4, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#640 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 4, c2 == 8, 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" 
+rule "#644 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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 4, c2 == 4, 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(c4 == 13, c3 == 11, c5 == 4, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#649 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 3, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#650 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 3, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 3, c2 == 9, 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" 
+rule "#653 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 3, c2 == 8, 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" 
+rule "#656 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, c1 > 1.5, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 3, c2 == 5, 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" 
+rule "#657 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, c4 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 3, c2 == 4, 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(c4 == 13, c3 == 11, c5 == 3, c2 == 3, 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" 
+rule "#664 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, c2 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 2, s2 == 2, s3 == 3, 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(c4 == 13, c3 == 11, c5 == 2, s2 == 2, s3 == 2, 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" 
+rule "#666 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)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 2, s2 == 2, s3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#670 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#672 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 1, c1 == 9, 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" 
+rule "#680 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 11, c5 == 1, c1 == 1, 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" 
+rule "#683 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#684 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#687 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 13, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#690 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 13, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#700 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 13, c1 == 3, c2 == 4, 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" 
+rule "#701 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 13, c1 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#704 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#706 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#707 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#711 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 11, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#713 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 11, c2 == 8, 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" 
+rule "#722 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 == 1, c5 <= 10.5, c1 <= 13, c2 <= 12.5, c4 <= 3.5, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 9, 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" 
+rule "#723 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 == 1, c5 <= 10.5, c1 <= 13, c2 > 12.5, c3 <= 5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 8, 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" 
+rule "#724 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, c4 <= 9.5, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#725 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 6, 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" 
+rule "#728 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, c4 > 9.5, c2 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 12, c1 == 3, 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" 
+rule "#731 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#734 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#735 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 9, 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" 
+rule "#736 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#737 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 7, 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" 
+rule "#738 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, c5 <= 5.5, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 6, 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" 
+rule "#739 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 <= 12.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 5, 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" 
+rule "#741 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 11, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#747 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 10, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#749 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 10, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#753 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#755 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 10, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#767 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 10, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#768 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 10, c1 == 1, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#770 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 9, c2 == 12, 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" 
+rule "#771 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 9, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#778 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 9, c2 == 4, 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" 
+rule "#779 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 9, c2 == 3, 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" 
+rule "#789 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 8, c1 == 6, 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" 
+rule "#790 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 8, c1 == 5, 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" 
+rule "#791 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 8, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3440 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#797 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#798 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 10, 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" 
+rule "#799 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 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 9, 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" 
+rule "#800 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 8, 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" 
+rule "#802 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 6, 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" 
+rule "#803 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 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 5, 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" 
+rule "#804 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 4, 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" 
+rule "#805 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#806 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#807 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#808 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 6, c2 == 13, 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" 
+rule "#812 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, c4 <= 9.0, c3 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 6, c2 == 9, 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" 
+rule "#814 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, c4 <= 9.0, c3 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 6, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#819 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 6, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#821 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 13, 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" 
+rule "#822 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, c4 > 9.0, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 12, c1 == 13, 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" 
+rule "#826 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, c4 > 9.0, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 12, c1 == 9, 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" 
+rule "#835 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 11, 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" 
+rule "#836 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 == 3, c4 <= 10.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3493 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#837 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 > 3.0, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 9, 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" 
+rule "#838 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 > 3.0, c4 > 5.0, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#840 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#842 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 4, 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(c4 == 13, c3 == 10, c5 == 5, c2 == 3, 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" 
+rule "#844 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 5, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 13, 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" 
+rule "#848 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 11, 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" 
+rule "#849 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 10, 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" 
+rule "#851 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 8, 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" 
+rule "#856 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 7, c1 == 9, 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(c4 == 13, c3 == 10, c5 == 4, c2 == 7, c1 == 7, 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" 
+rule "#865 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 6, 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" 
+rule "#866 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, c4 > 2.0, c2 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 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" 
+rule "#867 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#870 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 4, c2 == 1, 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" 
+rule "#874 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 3, c2 == 10, 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" 
+rule "#875 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3546 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#877 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 3, c2 == 7, 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" 
+rule "#879 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 <= 2.0, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 3, c2 == 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" 
+rule "#880 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 3, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 3, c2 == 2, 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" 
+rule "#886 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 > 4.5, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 2, c2 == 11, 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" 
+rule "#891 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 2, c2 == 6, c1 == 13, 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" 
+rule "#897 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 2, c2 == 6, c1 == 7, 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" 
+rule "#904 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, c1 > 5.5, c4 > 6.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 2, c2 == 5, 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" 
+rule "#905 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, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 2, c2 == 4, 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" 
+rule "#906 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)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 2, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 13, 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" 
+rule "#910 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 <= 10.5, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 12, 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" 
+rule "#917 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, c1 > 1.0, c4 <= 12, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 5, c1 == 13, 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" 
+rule "#921 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 == 3, c3 > 1.0, c1 > 2.0, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 5, c1 == 9, 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" 
+rule "#931 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 == 3, c3 > 1.0, c1 > 2.0, c2 > 1.5, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 3, 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" 
+rule "#932 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 == 3, c3 > 1.0, c1 > 2.0, c2 > 1.5, c4 <= 13, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#933 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 10, c5 == 1, c2 == 1, 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" 
+rule "#935 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 == 3, c3 > 1.0, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 12, 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" 
+rule "#936 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 == 3, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#937 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#939 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 8, 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" 
+rule "#946 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 == 2, c1 <= 11.5, c2 > 2.5, c4 <= 11.0, c3 > 10.5, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#952 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 7, c5 == 1, 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" 
+rule "#954 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, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 5, 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" 
+rule "#957 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)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#961 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 12, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#968 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 12, c5 == 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(c4 == 13, c3 == 9, c2 == 12, c1 == 11, 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" 
+rule "#974 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 10, 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" 
+rule "#977 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 > 3.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 7, 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" 
+rule "#979 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 6, c5 == 12, 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" 
+rule "#986 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, c5 > 1.5, c4 > 5.5, c2 <= 10.0, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 6, c5 == 5, 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" 
+rule "#991 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, c5 > 1.5, c4 > 5.5, c2 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3625 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#992 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 4, 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" 
+rule "#995 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, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 12, c1 == 1, 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" 
+rule "#997 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, c3 <= 8.5, c4 <= 2.5, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 11, c1 == 12, 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" 
+rule "#998 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3636 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1000 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 11, c1 == 9, 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" 
+rule "#1009 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)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 10, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3648 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1011 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 10, c1 == 11, 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" 
+rule "#1012 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 10, c1 == 10, 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" 
+rule "#1022 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 9, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#3655 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1023 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, c2 > 8.5, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 9, c5 == 12, 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" 
+rule "#1025 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 9, c5 == 10, 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" 
+rule "#1029 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 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 9, c5 == 6, 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" 
+rule "#1030 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)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 9, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1033 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 9, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1035 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 8, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 8, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1040 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 8, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1041 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 8, c5 == 7, 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" 
+rule "#1043 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 8, c5 == 5, 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" 
+rule "#1044 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, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 8, c5 == 4, 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" 
+rule "#1046 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, c3 > 7.5, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 8, c5 == 2, 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" 
+rule "#1050 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 7, c1 == 11, 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" 
+rule "#1053 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 7, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1060 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1063 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 6, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1064 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 6, c5 == 10, 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" 
+rule "#1065 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 == 2, c2 > 1.5, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 6, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1066 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 6, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1068 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 6, c5 == 6, 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" 
+rule "#1071 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 > 5.5, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 6, c5 == 3, 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" 
+rule "#1072 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 6, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1076 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1079 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 5, c1 == 10, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1081 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 5, c1 == 10, c5 == 9, 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" 
+rule "#1091 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 5, c1 == 8, 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" 
+rule "#1094 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1096 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 5, c1 == 3, 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" 
+rule "#1097 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, c3 <= 5.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 5, c1 == 2, 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" 
+rule "#1098 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, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 5, c1 == 1, 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" 
+rule "#1101 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 12, c1 == 12, 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" 
+rule "#1110 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, c5 > 12.0, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 12, c1 == 3, 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" 
+rule "#1115 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 9, 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" 
+rule "#1116 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, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 8, 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" 
+rule "#1117 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 7, 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" 
+rule "#1119 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, c4 > 2.5, c1 <= 9.0, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1121 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1123 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 4, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1126 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 11, 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" 
+rule "#1127 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, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 10, 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" 
+rule "#1128 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, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 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" 
+rule "#1133 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 4, 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" 
+rule "#1134 poker_hand = 2 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 > 1.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#3752 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1135 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 2, 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" 
+rule "#1136 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, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 3, c5 == 1, 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" 
+rule "#1138 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 2, c1 == 12, 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" 
+rule "#1140 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 == 3, c5 > 2.0, c3 > 1.5, c1 > 2.5, c2 <= 9.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 2, c1 == 10, 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" 
+rule "#1141 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 == 3, c5 > 2.0, c3 > 1.5, c1 > 2.5, c2 > 9.5, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 2, c1 == 9, 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" 
+rule "#1150 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, c4 > 2.0, c3 <= 9.0, c2 <= 11.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 2, c1 == 8, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3774 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1153 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 2, c1 == 8, c5 == 2, 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(c4 == 13, c3 == 9, c2 == 2, c1 == 7, 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" 
+rule "#1159 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, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 2, c1 == 3, 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" 
+rule "#1161 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, c1 > 5.5, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 2, c1 == 1, 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" 
+rule "#1164 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 1, c5 == 11, 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" 
+rule "#1166 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 1, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1167 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1168 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 1, c5 == 7, 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" 
+rule "#1169 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)
+		 examples.Poker(c4 == 13, c3 == 9, c2 == 1, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1175 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 13, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 13, c5 == 12, 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" 
+rule "#1177 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 13, c5 == 11, 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" 
+rule "#1180 poker_hand = 6 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 13, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
 end
 
-rule "#3806 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1181 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 13, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 13, c5 == 4, 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" 
+rule "#1185 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 13, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1187 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 13, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1189 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 12, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1192 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 12, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1194 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 12, c2 == 7, 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" 
+rule "#1195 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 == 1, c2 > 1.0, c3 <= 11.5, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 12, c2 == 6, 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" 
+rule "#1200 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 12, c2 == 1, 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" 
+rule "#1201 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 > 2.5, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 11, c5 == 13, 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" 
+rule "#1202 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, c3 <= 9.5, c4 > 7.0, c1 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 11, c5 == 12, 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(c4 == 13, c3 == 8, c1 == 11, c5 == 10, 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" 
+rule "#1205 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, c4 > 7.0, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3828 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1206 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, c3 <= 9.5, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 11, c5 == 8, 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" 
+rule "#1207 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, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 11, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1208 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 11, c5 == 6, 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" 
+rule "#1211 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, c2 > 4.5, c5 <= 5.5, c4 > 4.5, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 11, c5 == 3, 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" 
+rule "#1214 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, c2 > 4.5, c5 > 5.5, c4 > 2.5, c3 <= 6, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 10, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1216 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 10, c5 == 11, 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" 
+rule "#1220 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 10, c5 == 7, 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" 
+rule "#1222 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, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 10, c5 == 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" 
+rule "#1226 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, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 10, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1231 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 9, c5 == 9, 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" 
+rule "#1233 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 == 2, c1 > 1.5, c3 > 4.0, c5 > 2.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 9, c5 == 7, c2 == 13, 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" 
+rule "#1235 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, c4 > 3.5, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 9, c5 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 9, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 9, c5 == 2, 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" 
+rule "#1253 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 8, c2 == 12, 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" 
+rule "#1254 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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 8, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1255 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 8, c2 == 10, 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" 
+rule "#1257 poker_hand = 6 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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
 end
 
-rule "#3858 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1260 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, c5 > 4.5, c1 > 3.5, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 8, c2 == 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" 
+rule "#1263 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, c5 > 4.5, c1 > 3.5, c4 <= 8.5, c3 <= 5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 8, c2 == 2, 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" 
+rule "#1264 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 8, c2 == 1, 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" 
+rule "#1266 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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 7, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 7, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1270 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 7, c2 == 8, 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" 
+rule "#1272 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, c3 <= 8.5, c1 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 7, c2 == 6, 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" 
+rule "#1277 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 7, c2 == 1, 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" 
+rule "#1279 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 > 3.5, c4 > 4.0, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 6, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1282 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 6, c2 == 9, 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" 
+rule "#1284 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 6, c2 == 7, 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" 
+rule "#1285 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, c4 > 2.0, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 6, c2 == 6, 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" 
+rule "#1291 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 == 2, c2 <= 11.5, c1 <= 4.5, c4 > 2.0, c3 > 4.0, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 5, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1294 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1295 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 5, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1300 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 5, c2 == 8, c5 == 9, 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" 
+rule "#1301 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 == 2, c2 <= 11.5, c1 <= 4.5, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 5, c2 == 8, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1311 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 5, c2 == 5, 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" 
+rule "#1319 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 > 2.0, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 4, c5 == 10, c2 == 13, 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" 
+rule "#1326 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 4, c5 == 10, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 4, c5 == 6, 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" 
+rule "#1337 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 4, c5 == 4, 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" 
+rule "#1339 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 4, c5 == 2, 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" 
+rule "#1340 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, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 4, c5 == 1, 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" 
+rule "#1346 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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1349 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 6, c2 == 12, 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" 
+rule "#1353 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)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 6, c2 == 8, 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" 
+rule "#1358 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, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 6, c2 == 3, 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" 
+rule "#1361 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 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" 
+rule "#1362 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1363 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 3, 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" 
+rule "#1365 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, c3 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 3, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1366 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1367 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 12, 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" 
+rule "#1369 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 10, 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" 
+rule "#1373 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1383 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 5, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1388 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 3, 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" 
+rule "#1393 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, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 2, c2 == 1, c5 == 10, 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(c4 == 13, c3 == 8, c1 == 2, c2 == 1, c5 == 1, 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" 
+rule "#1406 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 <= 2.5, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 1, c2 == 10, 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(c4 == 13, c3 == 8, c1 == 1, c2 == 9, 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" 
+rule "#1410 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 > 2.5, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 1, c2 == 6, 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" 
+rule "#1411 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, c4 <= 11.5, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 8, c1 == 1, c2 == 5, 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" 
+rule "#1417 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 13, c1 == 12, 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" 
+rule "#1420 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, c2 > 2.0, c1 <= 12, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 13, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1422 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 13, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1423 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 13, c1 == 6, 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" 
+rule "#1425 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, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 13, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1436 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1437 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 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" 
+rule "#1442 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 > 13, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 4, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1443 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 4, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1447 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 4, c5 == 4, 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" 
+rule "#1451 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 2, 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" 
+rule "#1453 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, c3 <= 12.5, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 12, c1 == 1, 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(c4 == 13, c3 == 7, c2 == 11, c1 == 10, 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" 
+rule "#1464 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 11, c1 == 9, c5 == 7, 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" 
+rule "#1470 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 11, c1 == 9, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1476 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 11, c1 == 8, c5 == 8, 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" 
+rule "#1480 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)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 11, c1 == 8, c5 == 4, 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" 
+rule "#1484 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 <= 8, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1487 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 11, c1 == 4, 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(c4 == 13, c3 == 7, c2 == 11, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1490 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1494 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 10, c5 == 10, 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" 
+rule "#1496 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 10, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1497 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 10, c5 == 7, 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" 
+rule "#1498 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 10, c5 == 6, 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" 
+rule "#1501 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 10, c5 == 3, 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" 
+rule "#1504 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)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1505 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1506 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 11, 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" 
+rule "#1507 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, c5 > 3.5, c1 > 4.0, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1508 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 9, 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" 
+rule "#1509 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, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 8, 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" 
+rule "#1512 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, c3 <= 7.5, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 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" 
+rule "#1513 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1518 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 3, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1521 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 3, c5 == 6, 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" 
+rule "#1528 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, c2 > 2.0, c4 > 2.0, c1 <= 10.5, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 9, c1 == 1, 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" 
+rule "#1536 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, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 8, c1 == 6, 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" 
+rule "#1538 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 8, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1542 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 8, c1 == 2, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1545 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 8, c1 == 2, c5 == 8, 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" 
+rule "#1549 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 <= 12.5, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 8, c1 == 2, c5 == 4, 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" 
+rule "#1557 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 7, c1 == 10, 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" 
+rule "#1570 poker_hand = 3 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)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 7, c1 == 3, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1572 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 7, c1 == 3, c5 == 5, 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(c4 == 13, c3 == 7, c2 == 7, c1 == 3, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1577 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 7, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1583 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1585 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 13, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1592 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 12, 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" 
+rule "#1593 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 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" 
+rule "#1604 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 3, c1 == 10, 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" 
+rule "#1607 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 <= 3.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 3, c1 == 7, 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" 
+rule "#1612 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1614 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 6, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1618 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1619 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1620 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1627 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 8, c5 == 7, 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" 
+rule "#1628 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 > 10.5, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 8, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1630 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 8, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1634 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1640 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 4, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 4, c5 == 4, 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" 
+rule "#1650 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 3, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 3, c5 == 11, 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" 
+rule "#1657 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 3, c5 == 6, 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(c4 == 13, c3 == 7, c2 == 5, c1 == 3, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1663 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1664 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 5, c1 == 1, 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" 
+rule "#1666 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)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 4, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1667 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 4, c5 == 11, 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" 
+rule "#1673 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 4, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1676 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 4, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1682 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1684 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 3, c1 == 7, 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" 
+rule "#1685 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)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 3, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1689 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 3, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1692 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 12, 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" 
+rule "#1694 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 <= 10.0, c4 > 6.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 10, 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" 
+rule "#1697 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1704 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 6, c5 == 7, 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(c4 == 13, c3 == 7, c2 == 2, c1 == 6, c5 == 3, 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" 
+rule "#1715 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 <= 5.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 2, c1 == 1, 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" 
+rule "#1717 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 > 5.0, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 1, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4150 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1721 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 1, c5 == 8, 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" 
+rule "#1722 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 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 1, c5 == 7, 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" 
+rule "#1726 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, c1 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 1, c5 == 3, 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" 
+rule "#1728 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 7, c2 == 1, c5 == 1, 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" 
+rule "#1736 poker_hand = 6 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)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 13, c2 == 13, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#1739 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 13, c2 == 13, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 13, c2 == 12, 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" 
+rule "#1744 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 == 3, c5 > 2.0, c3 <= 7.5, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 13, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1747 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 13, c2 == 7, 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" 
+rule "#1748 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 == 3, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 13, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1750 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 13, c2 == 4, 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" 
+rule "#1753 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)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 13, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1754 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1755 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 12, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1764 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 12, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1769 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 10, 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" 
+rule "#1771 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 8, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1779 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 8, c5 == 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" 
+rule "#1781 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 == 2, c3 > 2.0, c1 <= 12, c2 > 1.5, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 8, c5 == 3, 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" 
+rule "#1782 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 8, c5 == 2, 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" 
+rule "#1783 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 12, c2 == 8, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1794 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 11, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1795 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 11, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1796 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 11, c2 == 8, 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" 
+rule "#1799 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 11, c2 == 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" 
+rule "#1800 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 11, c2 == 4, 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" 
+rule "#1803 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, c2 > 1.0, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 11, c2 == 1, 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" 
+rule "#1806 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, c2 > 1.0, c4 <= 8.0, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1807 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 10, c2 == 10, 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" 
+rule "#1810 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 10, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 10, c2 == 4, 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" 
+rule "#1816 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 10, c2 == 1, 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" 
+rule "#1817 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 > 3.0, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 13, 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" 
+rule "#1818 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 <= 7.0, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 12, 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" 
+rule "#1822 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 8, 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" 
+rule "#1829 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 <= 8.5, c5 <= 10.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 5, c5 == 9, 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" 
+rule "#1835 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, c2 > 2.0, c3 > 4.0, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 5, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1839 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1840 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 2, 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" 
+rule "#1852 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 1, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 9, c2 == 1, c5 == 1, 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" 
+rule "#1859 poker_hand = 2 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 > 1.0, c4 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 13, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1863 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 13, c5 == 4, 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" 
+rule "#1868 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 > 1.0, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1869 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 10, 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" 
+rule "#1871 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 8, 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" 
+rule "#1873 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)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1874 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 5, 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" 
+rule "#1875 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 4, 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" 
+rule "#1878 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, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 8, c2 == 1, 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" 
+rule "#1880 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 12, 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" 
+rule "#1885 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)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1892 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 3, c5 == 10, 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" 
+rule "#1894 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 3, c5 == 8, 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" 
+rule "#1896 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 3, c5 == 6, 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" 
+rule "#1902 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4295 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1903 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, c3 <= 7, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 7, c2 == 1, 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" 
+rule "#1909 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)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 6, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 6, c2 == 5, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1920 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 6, c2 == 5, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1926 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 6, c2 == 3, 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(c4 == 13, c3 == 6, c1 == 6, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1928 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 6, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1930 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 5, c2 == 12, 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" 
+rule "#1932 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 5, c2 == 10, 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" 
+rule "#1935 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 > 9.0, c4 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 5, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1937 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 5, c2 == 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" 
+rule "#1940 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 5, c2 == 2, 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" 
+rule "#1942 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 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 4, s2 == 4, 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" 
+rule "#1943 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, c5 <= 11.0, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 4, s2 == 3, 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" 
+rule "#1951 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 4, s2 == 2, c2 == 6, 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" 
+rule "#1954 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, c1 > 3.5, c3 <= 11.5, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 4, s2 == 2, c2 == 3, 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" 
+rule "#1961 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, c1 > 3.5, c3 <= 11.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1962 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 9, 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" 
+rule "#1963 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4356 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1965 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 > 5.0, c4 <= 10.0, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 6, 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" 
+rule "#1966 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 > 5.0, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 5, 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" 
+rule "#1967 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 4, 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" 
+rule "#1968 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)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1969 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 2, 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" 
+rule "#1970 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, c2 > 7.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 3, c5 == 1, 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" 
+rule "#1972 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, c1 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 2, c2 == 12, 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" 
+rule "#1974 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 2, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1975 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 2, c2 == 9, 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" 
+rule "#1976 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 2, c2 == 8, 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" 
+rule "#1980 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 2, c2 == 4, 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(c4 == 13, c3 == 6, c1 == 2, c2 == 3, 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" 
+rule "#1983 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, c5 > 5.0, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 2, c2 == 1, 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" 
+rule "#1986 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 <= 3.0, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 1, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4408 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#1990 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 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 1, c2 == 7, 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" 
+rule "#1992 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 6, c1 == 1, c2 == 5, 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" 
+rule "#1998 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, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 13, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#4429 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#2000 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)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 13, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2002 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 13, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2004 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 13, c5 == 6, 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" 
+rule "#2007 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, c3 > 1.0, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 13, c5 == 3, 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" 
+rule "#2016 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, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 12, c1 == 10, c5 == 10, 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" 
+rule "#2018 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, c5 <= 11.5, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 12, c1 == 10, c5 == 8, 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" 
+rule "#2031 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 12, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2033 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2038 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 11, c1 == 10, 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" 
+rule "#2041 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, c2 > 4.0, c5 <= 7.0, c1 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 11, c1 == 7, 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" 
+rule "#2051 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 == 1, c3 <= 5.0, c1 > 6.0, c2 > 2.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 11, c1 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2053 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 11, c1 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2057 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 11, c1 == 3, 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" 
+rule "#2059 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, c5 <= 8.5, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 11, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2063 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2065 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 8, 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" 
+rule "#2066 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)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 7, 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" 
+rule "#2068 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 == 1, c3 > 5.0, c1 > 9.5, c2 > 7.0, c4 <= 12.0, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#4478 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#2072 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, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 3, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2080 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 3, c5 == 3, 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" 
+rule "#2083 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, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 10, c1 == 2, 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" 
+rule "#2086 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 9, c1 == 12, 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" 
+rule "#2088 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)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 9, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2092 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 9, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2094 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 9, c1 == 4, 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" 
+rule "#2095 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 9, c1 == 3, 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" 
+rule "#2096 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, c1 > 4.0, c3 > 6.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 9, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2099 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 12, 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" 
+rule "#2106 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, c1 > 4.0, c3 > 6.0, c2 > 6.5, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 9, c5 == 9, 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" 
+rule "#2113 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 9, c5 == 2, 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" 
+rule "#2120 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 3, 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(c4 == 13, c3 == 5, c2 == 8, c1 == 1, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2134 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 8, c1 == 1, c5 == 1, 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" 
+rule "#2135 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, c2 > 4.5, c1 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, 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" 
+rule "#2138 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 10, 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" 
+rule "#2139 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 9, c5 == 13, 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" 
+rule "#2142 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.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 9, c5 == 10, 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" 
+rule "#2153 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)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2155 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2156 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 4, 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" 
+rule "#2158 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 2, 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" 
+rule "#2159 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 7, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2160 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2161 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 12, 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" 
+rule "#2163 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, c2 <= 10.5, c3 <= 13, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 10, 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" 
+rule "#2171 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 9, c5 == 6, 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" 
+rule "#2173 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.0, c2 > 1.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 9, c5 == 4, 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" 
+rule "#2179 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 6, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2185 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 6, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2193 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 4, 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" 
+rule "#2195 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 == 1, c4 <= 7.0, c3 <= 7.0, c1 <= 6.0, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2197 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2199 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 5, c1 == 11, 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" 
+rule "#2200 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.0, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 5, c1 == 10, 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(c4 == 13, c3 == 5, c2 == 5, c1 == 6, 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" 
+rule "#2207 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, c1 > 6.0, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 5, c1 == 3, 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" 
+rule "#2217 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, c1 > 6.0, c2 > 1.5, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 5, c1 == 2, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2219 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 5, c1 == 2, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2222 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2225 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 10, c5 == 13, 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(c4 == 13, c3 == 5, c2 == 4, c1 == 10, c5 == 12, 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" 
+rule "#2230 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 10, c5 == 8, 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" 
+rule "#2240 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 9, c5 == 11, 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" 
+rule "#2242 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)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 9, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2248 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 9, c5 == 3, 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" 
+rule "#2251 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2254 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 4, c1 == 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(c4 == 13, c3 == 5, c2 == 4, c1 == 3, 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" 
+rule "#2259 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, c5 > 1.5, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2260 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 12, 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" 
+rule "#2262 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 10, 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" 
+rule "#2264 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, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 8, c1 == 13, 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" 
+rule "#2265 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 8, c1 == 12, 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" 
+rule "#2274 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 == 1, c2 > 2.5, c5 > 2.5, c1 > 2.5, c4 > 1.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 8, c1 == 3, 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" 
+rule "#2279 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, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 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" 
+rule "#2281 poker_hand = 2 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)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2283 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 3, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2284 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 13, 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" 
+rule "#2286 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 11, 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" 
+rule "#2287 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2292 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 8, c5 == 10, 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(c4 == 13, c3 == 5, c2 == 2, c1 == 8, c5 == 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" 
+rule "#2303 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 7, c5 == 12, 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" 
+rule "#2304 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 7, c5 == 11, 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" 
+rule "#2313 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 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 7, c5 == 2, 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" 
+rule "#2316 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 > 4.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 6, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2323 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 6, c5 == 5, 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" 
+rule "#2325 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)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 6, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 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" 
+rule "#2332 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 2, c5 == 12, 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" 
+rule "#2342 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 == 3, c1 > 1.0, c2 > 4.0, c3 <= 9.0, c4 > 2.0, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 2, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2344 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 2, c1 == 1, 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" 
+rule "#2345 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 == 3, c1 > 1.0, c2 > 4.0, c3 <= 9.0, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2352 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 12, c5 == 7, 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" 
+rule "#2358 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, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 12, c5 == 1, 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" 
+rule "#2359 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2363 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 7, 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" 
+rule "#2364 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 6, 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(c4 == 13, c3 == 5, c2 == 1, c1 == 5, c5 == 11, 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" 
+rule "#2369 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 5, c5 == 9, 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" 
+rule "#2373 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 == 2, c3 > 3.0, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#4675 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#2381 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 5, c2 == 1, c1 == 1, 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" 
+rule "#2383 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 > 3.0, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 13, c2 == 12, 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" 
+rule "#2386 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, c1 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 13, c2 == 9, 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" 
+rule "#2388 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, c3 <= 12.5, c4 > 1.0, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 13, c2 == 7, 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" 
+rule "#2390 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, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 13, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2394 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 13, c2 == 1, 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" 
+rule "#2396 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 12, c5 == 12, 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" 
+rule "#2399 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 12, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2400 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 12, c5 == 8, 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" 
+rule "#2405 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 12, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2407 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 12, c5 == 1, c2 == 13, 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" 
+rule "#2415 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 12, c5 == 1, c2 == 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" 
+rule "#2420 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 13, 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" 
+rule "#2423 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 10, 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" 
+rule "#2426 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2427 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 6, 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" 
+rule "#2428 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, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 5, 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" 
+rule "#2429 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 2, 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" 
+rule "#2434 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 1, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2440 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 11, c2 == 1, c5 == 5, 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" 
+rule "#2447 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2448 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 10, 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" 
+rule "#2449 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 <= 11.5, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 9, 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" 
+rule "#2451 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2458 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 3, c5 == 10, 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" 
+rule "#2462 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 == 1, c1 > 3.5, c4 > 1.5, c5 > 1.0, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 3, c5 == 6, 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" 
+rule "#2463 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 == 3, c5 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 3, c5 == 5, 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" 
+rule "#2466 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 == 3, c5 <= 12, c4 > 10.0, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 3, c5 == 2, 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" 
+rule "#2468 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, c4 <= 12.0, c2 <= 2.5, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 10, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2472 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 8, c5 == 12, 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" 
+rule "#2475 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 8, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2484 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 8, c5 == 8, c2 == 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" 
+rule "#2485 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 == 2, c1 <= 11.0, c5 > 7.5, c3 <= 11.5, c4 > 5.0, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 8, c5 == 8, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2490 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 8, c5 == 6, 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" 
+rule "#2491 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 8, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2497 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 7, c2 == 12, 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" 
+rule "#2498 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2499 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 7, c2 == 10, 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" 
+rule "#2500 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 7, c2 == 9, 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(c4 == 13, c3 == 4, c1 == 7, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2502 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 7, c2 == 7, 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" 
+rule "#2503 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 7, c2 == 6, 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" 
+rule "#2504 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 <= 7.5, c1 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 7, c2 == 5, 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" 
+rule "#2505 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 > 4.5, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 7, c2 == 4, 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" 
+rule "#2510 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 == 2, c1 > 3.5, c2 > 2.0, c4 <= 1.5, c3 <= 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 12, 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" 
+rule "#2513 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 9, s5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2514 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 9, s5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2515 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 9, s5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#2516 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 9, s5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2517 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2521 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 4, 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" 
+rule "#2524 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 6, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2526 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 5, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2527 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2528 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 5, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2529 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 5, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2535 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 5, c5 == 3, 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" 
+rule "#2536 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 5, c5 == 2, 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" 
+rule "#2540 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 == 3, c4 <= 10.0, c1 > 2.0, c2 > 3.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 4, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2544 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 4, c2 == 7, 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" 
+rule "#2546 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 4, c2 == 5, 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" 
+rule "#2548 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 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 4, c2 == 3, 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" 
+rule "#2550 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 4, c2 == 1, 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" 
+rule "#2553 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 > 2.0, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 3, c2 == 11, 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" 
+rule "#2558 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 3, c2 == 6, 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" 
+rule "#2563 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, c2 <= 1.5, c3 > 4.5, c4 > 5.0, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 3, c2 == 1, 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" 
+rule "#2564 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 13, 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" 
+rule "#2565 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, c2 > 1.5, c3 > 3.0, c5 > 10.5, c4 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 12, 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" 
+rule "#2566 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2567 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 10, 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" 
+rule "#2568 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, c5 > 4.5, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 9, c2 == 13, 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" 
+rule "#2570 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)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 9, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2589 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 8, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2590 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 8, c2 == 4, 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" 
+rule "#2596 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 5, 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" 
+rule "#2606 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 == 3, c1 <= 13, c4 <= 12, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2607 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 4, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 2, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2614 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 12, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2620 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 12, c2 == 7, 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" 
+rule "#2626 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 == 2, c4 > 1.0, c5 <= 3.0, c2 <= 12.5, c3 > 5.0, c1 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 12, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2627 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 11, 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" 
+rule "#2629 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, c3 > 5.0, c1 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 9, 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" 
+rule "#2632 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, c1 <= 9.5, c2 > 3.0, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2637 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 4, c1 == 1, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2640 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2649 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 12, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2653 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 10, 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" 
+rule "#2656 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 == 2, c4 > 1.0, c5 > 3.0, c1 <= 9.5, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 7, 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" 
+rule "#2658 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 == 2, c4 > 1.0, c5 > 3.0, c1 > 9.5, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4910 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#2673 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 == 2, c4 > 1.0, c5 > 3.0, c1 > 9.5, c2 > 3.0, c3 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 13, c2 == 2, c1 == 1, 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" 
+rule "#2675 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 13, 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" 
+rule "#2676 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 12, 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" 
+rule "#2677 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 > 4.5, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 11, 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" 
+rule "#2680 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 9, c2 == 12, 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" 
+rule "#2690 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, c1 <= 12, c4 > 11.5, c2 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 9, c2 == 2, 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" 
+rule "#2693 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 > 2.0, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 7, 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" 
+rule "#2697 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2698 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 2, 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" 
+rule "#2699 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 > 7.5, c1 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 12, c1 == 1, 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" 
+rule "#2700 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 > 1.5, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 13, 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" 
+rule "#2703 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 10, 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" 
+rule "#2704 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 <= 11.0, c3 > 2.0, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4977 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#2709 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 <= 11.0, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 4, 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" 
+rule "#2710 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 3, 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" 
+rule "#2711 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)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2714 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 1, c2 == 11, 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" 
+rule "#2715 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, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 1, c2 == 10, 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" 
+rule "#2716 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)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 11, c1 == 1, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2725 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 10, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2732 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2734 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 10, c1 == 4, 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" 
+rule "#2735 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, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 10, c1 == 3, 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" 
+rule "#2736 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, c3 <= 5.0, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 10, c1 == 2, 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" 
+rule "#2742 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, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 10, c1 == 1, c2 == 8, 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" 
+rule "#2753 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 10, 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" 
+rule "#2755 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, c3 > 3.0, c1 <= 13, c5 > 3.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2756 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2757 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2758 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2759 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2760 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 3, 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" 
+rule "#2761 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 9, c2 == 2, 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" 
+rule "#2769 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, c3 <= 1.5, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 12, c2 == 8, 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" 
+rule "#2775 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 12, c2 == 2, 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" 
+rule "#2777 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, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 11, c2 == 13, 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" 
+rule "#2778 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, c2 > 6.0, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 11, c2 == 12, 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" 
+rule "#2790 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 == 1, c5 > 1.0, c2 <= 9.0, c1 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 10, 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" 
+rule "#2792 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)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2802 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2809 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 8, c1 == 1, 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" 
+rule "#2812 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 13, 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" 
+rule "#2814 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)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 7, 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" 
+rule "#2820 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 == 3, c1 > 6.5, c4 > 1.0, c2 > 1.5, c5 <= 8.5, c3 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 5, 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" 
+rule "#2830 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 == 3, c1 > 6.5, c4 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2832 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 4, c1 == 2, 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" 
+rule "#2835 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2836 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2837 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 6, c2 == 13, 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" 
+rule "#2839 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 6, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2843 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 6, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 6, c2 == 4, 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" 
+rule "#2855 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 5, c2 == 8, 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" 
+rule "#2858 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 == 1, c1 <= 5.5, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 5, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 5, c2 == 4, 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" 
+rule "#2861 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 5, c2 == 2, 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" 
+rule "#2862 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 5, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2863 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 13, 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(c4 == 13, c3 == 3, c5 == 4, c2 == 11, 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" 
+rule "#2869 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 10, c1 == 10, 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" 
+rule "#2871 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 <= 5.0, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 10, c1 == 4, 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" 
+rule "#2880 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 8, 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" 
+rule "#2881 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 > 4.5, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 7, 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" 
+rule "#2882 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, c1 <= 6.0, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2883 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 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" 
+rule "#2885 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 3, 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" 
+rule "#2887 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 == 4, c4 > 1.0, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 4, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2888 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2889 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2890 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2892 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2896 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2897 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2899 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2900 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 3, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2901 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 2, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2902 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 2, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2908 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2912 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2913 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 2, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2914 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2916 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 12, c2 == 12, 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(c4 == 13, c3 == 3, c5 == 1, c1 == 9, 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" 
+rule "#2931 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 == 4, c4 > 1.0, c1 > 2.5, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2932 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2947 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 4, c2 == 1, 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" 
+rule "#2948 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 == 4, c4 > 1.0, c1 > 2.5, c3 > 2.5, c5 <= 6.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2951 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 2, c2 == 11, 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" 
+rule "#2959 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 == 4, c4 > 1.0, c1 > 2.5, c3 > 2.5, c5 > 6.0, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 2, c2 == 3, 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" 
+rule "#2962 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 3, c5 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2974 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#2978 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 12, c1 == 11, 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" 
+rule "#2982 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 12, c1 == 7, 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" 
+rule "#2987 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 12, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2994 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 11, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2995 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 11, c1 == 7, 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" 
+rule "#2997 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 11, c1 == 4, 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" 
+rule "#3000 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)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3003 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 10, c2 == 12, 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" 
+rule "#3007 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)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 10, c2 == 8, 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" 
+rule "#3008 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 10, c2 == 7, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3009 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 10, c2 == 7, c1 == 12, 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" 
+rule "#3022 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, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 10, c2 == 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" 
+rule "#3023 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 10, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3028 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3029 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 9, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3033 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3036 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3037 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3039 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 9, c1 == 1, 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" 
+rule "#3041 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, c1 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 8, c1 == 12, 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" 
+rule "#3042 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 8, c1 == 11, 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" 
+rule "#3046 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)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 8, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3047 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 8, c1 == 6, 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" 
+rule "#3050 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)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 8, c1 == 3, 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" 
+rule "#3055 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3057 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 7, c1 == 9, 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" 
+rule "#3058 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, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 7, c1 == 8, 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" 
+rule "#3062 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, c5 > 6.5, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 7, c1 == 4, 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" 
+rule "#3068 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, c5 > 6.5, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 6, c1 == 11, 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" 
+rule "#3069 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 6, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3071 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 6, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3072 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 6, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3074 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 6, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3075 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 6, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3077 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 6, c1 == 2, 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" 
+rule "#3080 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 5, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3081 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 5, c1 == 11, 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" 
+rule "#3084 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 5, c1 == 8, 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" 
+rule "#3085 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 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 5, c1 == 7, 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" 
+rule "#3086 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 5, c1 == 6, 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" 
+rule "#3088 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 5, c1 == 4, 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" 
+rule "#3089 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)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 5, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5280 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#3092 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 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 13, 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" 
+rule "#3093 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 12, 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" 
+rule "#3094 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 11, 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" 
+rule "#3095 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, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 10, c2 == 13, 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" 
+rule "#3102 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 10, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3108 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 9, 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" 
+rule "#3110 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 7, 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" 
+rule "#3111 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, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 6, c2 == 13, 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" 
+rule "#3123 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, c1 > 11.5, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 6, c2 == 1, 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" 
+rule "#3124 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3127 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3128 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 4, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3130 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 3, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3134 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 3, c1 == 8, 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" 
+rule "#3136 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 3, c1 == 6, 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" 
+rule "#3141 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)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 3, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5348 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#3142 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3143 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 2, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3147 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 2, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3148 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3151 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 2, c2 == 4, 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" 
+rule "#3153 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 2, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3155 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 1, c2 == 13, 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" 
+rule "#3156 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 1, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3158 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 1, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3160 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 1, c2 == 8, 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(c4 == 13, c3 == 2, c5 == 1, c2 == 7, 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" 
+rule "#3162 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 1, c2 == 6, 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" 
+rule "#3163 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 1, c2 == 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" 
+rule "#3167 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 <= 8.0, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 2, c5 == 1, c2 == 1, 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" 
+rule "#3168 poker_hand = 3 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 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 13, c1 == 9, 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" 
+rule "#3175 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 13, c1 == 6, 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(c4 == 13, c3 == 1, c5 == 13, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3184 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 12, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#3195 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 12, c1 == 8, c2 == 4, 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" 
+rule "#3198 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 12, c1 == 8, c2 == 1, 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" 
+rule "#3200 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 12, c1 == 6, 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" 
+rule "#3202 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, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 12, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3204 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 12, c1 == 2, 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" 
+rule "#3205 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5405 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#3206 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 <= 13, c4 <= 11.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 11, c2 == 13, 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" 
+rule "#3207 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 11, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3210 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 11, c2 == 10, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#3216 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 11, c2 == 10, c1 == 6, 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(c4 == 13, c3 == 1, c5 == 11, c2 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3222 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 11, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3223 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 11, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3224 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 11, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3228 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 11, c2 == 3, 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" 
+rule "#3229 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, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 11, c2 == 2, 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" 
+rule "#3235 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 > 2.0, c2 > 3.5, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 10, c1 == 9, 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" 
+rule "#3236 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3237 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 10, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3245 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 12, 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" 
+rule "#3246 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5435 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#3248 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 9, 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" 
+rule "#3249 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, c1 <= 13, c5 > 8.5, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 8, 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" 
+rule "#3251 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 6, 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" 
+rule "#3252 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, c4 > 3.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 5, 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" 
+rule "#3256 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 9, c2 == 1, 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" 
+rule "#3257 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 > 1.5, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 8, c1 == 13, 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" 
+rule "#3258 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 8, c1 == 12, 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(c4 == 13, c3 == 1, c5 == 8, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3265 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 8, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3266 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 8, c1 == 4, 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" 
+rule "#3268 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 8, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3270 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3273 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 10, 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" 
+rule "#3274 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, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 9, 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" 
+rule "#3282 poker_hand = 3 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, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 7, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3283 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3289 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 6, 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" 
+rule "#3290 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 5, 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" 
+rule "#3291 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 <= 10.0, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 4, 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" 
+rule "#3293 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 > 10.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3294 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 7, c2 == 1, 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" 
+rule "#3295 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 == 2, c1 > 1.0, c2 <= 13, c3 > 10.0, c4 > 5.0, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3296 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3297 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 11, 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" 
+rule "#3304 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 > 10.0, c4 > 5.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 10, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 10, c2 == 1, 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" 
+rule "#3312 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 8, 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" 
+rule "#3313 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3315 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 3, 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" 
+rule "#3318 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3321 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 5, c1 == 12, 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" 
+rule "#3322 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 5, c1 == 11, 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" 
+rule "#3324 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, c2 > 1.5, c4 > 1.0, c1 <= 5.5, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 5, c1 == 9, 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" 
+rule "#3325 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, c5 <= 13, c3 > 2.0, c2 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 5, c1 == 8, c2 == 13, 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" 
+rule "#3332 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 5, c1 == 8, c2 == 6, 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" 
+rule "#3339 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, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 5, c1 == 6, 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" 
+rule "#3345 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 4, c1 == 13, 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" 
+rule "#3347 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 4, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3351 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 4, c1 == 7, 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" 
+rule "#3355 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3357 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 4, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3358 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 3, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3359 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 3, c2 == 12, 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" 
+rule "#3360 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)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3362 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3364 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3365 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3367 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3369 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 3, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3371 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 13, 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" 
+rule "#3372 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 12, 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" 
+rule "#3373 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, c2 <= 10.0, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 11, 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" 
+rule "#3381 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, c2 <= 10.0, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 8, c2 == 8, 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" 
+rule "#3384 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 8, c2 == 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" 
+rule "#3389 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, c5 > 1.0, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 7, 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" 
+rule "#3390 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 == 3, c2 > 1.0, c3 > 5.0, c1 <= 5.5, c4 > 1.0, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3392 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 4, 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" 
+rule "#3393 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 2, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3397 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 1, c1 == 12, 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" 
+rule "#3400 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 13, c3 == 1, c5 == 1, c1 == 9, 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" 
+rule "#3413 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 > 2.5, c4 > 2.0, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 13, c1 == 9, 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" 
+rule "#3414 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 == 2, c1 > 3.5, c5 > 6.0, c3 > 2.5, c4 > 2.0, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3415 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 13, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3419 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 13, c1 == 3, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3425 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 13, c1 == 3, c2 == 7, 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" 
+rule "#3436 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 12, c1 == 11, 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" 
+rule "#3437 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 > 3.0, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 12, c1 == 10, 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" 
+rule "#3438 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 == 1, c2 > 12.5, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3440 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 12, c1 == 7, 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" 
+rule "#3448 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)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 11, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3451 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 11, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#3453 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 11, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3456 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 11, c1 == 4, 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" 
+rule "#3459 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, c2 > 5.0, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 11, c1 == 1, 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" 
+rule "#3462 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5629 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#3463 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 10, c2 == 10, 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" 
+rule "#3464 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 10, c2 == 9, 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" 
+rule "#3465 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 10, c2 == 8, 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" 
+rule "#3466 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)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 10, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3467 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 10, c2 == 6, 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" 
+rule "#3468 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 10, c2 == 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" 
+rule "#3472 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 > 5.0, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 10, c2 == 1, 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" 
+rule "#3473 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 9, c1 == 13, 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" 
+rule "#3475 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, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 9, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3476 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 9, c1 == 10, 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" 
+rule "#3477 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 9, c1 == 9, 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" 
+rule "#3480 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 9, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3482 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3483 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 9, c1 == 3, 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" 
+rule "#3489 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 8, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3490 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 8, c1 == 9, 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" 
+rule "#3491 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 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 8, c1 == 8, 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" 
+rule "#3494 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 8, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3496 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 8, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3498 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 8, c1 == 1, 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" 
+rule "#3499 poker_hand = 3 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)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 7, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 7, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3502 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 7, c2 == 10, 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(c4 == 12, c5 == 13, c3 == 7, c2 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3506 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 7, c2 == 9, c1 == 10, 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" 
+rule "#3516 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)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 7, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3522 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 7, c2 == 2, 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" 
+rule "#3525 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)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 6, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3526 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 6, c1 == 11, 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" 
+rule "#3531 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, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 6, c1 == 6, 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" 
+rule "#3532 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 == 4, c3 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 6, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3536 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 6, c1 == 1, c2 == 13, 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" 
+rule "#3545 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 == 4, c3 > 2.0, c5 > 1.5, c4 <= 6.5, c1 > 1.0, c2 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 6, c1 == 1, c2 == 4, 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" 
+rule "#3550 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 5, c2 == 12, 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" 
+rule "#3551 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 5, c2 == 11, 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" 
+rule "#3552 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, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 5, c2 == 10, 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" 
+rule "#3554 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, c3 <= 11.5, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 5, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3556 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 5, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 5, c2 == 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" 
+rule "#3563 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 12, 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" 
+rule "#3564 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3565 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3566 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3568 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3572 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 6, c2 == 6, 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" 
+rule "#3584 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 4, c1 == 3, 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" 
+rule "#3591 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 3, c2 == 9, 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" 
+rule "#3595 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3598 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 3, c2 == 4, c1 == 11, 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" 
+rule "#3605 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 <= 3.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 3, c2 == 4, c1 == 4, 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" 
+rule "#3609 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 > 3.5, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 3, c2 == 3, 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" 
+rule "#3611 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, c5 > 8.5, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 3, c2 == 1, 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" 
+rule "#3613 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 12, 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" 
+rule "#3614 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 11, 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" 
+rule "#3618 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)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 10, c1 == 10, 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" 
+rule "#3623 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 10, c1 == 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" 
+rule "#3624 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 10, c1 == 4, 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" 
+rule "#3629 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 8, 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" 
+rule "#3630 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 7, 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" 
+rule "#3631 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, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 6, 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" 
+rule "#3632 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 == 2, c4 <= 1.5, c1 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 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" 
+rule "#3633 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, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 4, 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" 
+rule "#3634 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 == 2, c4 > 1.5, c2 <= 13, c3 > 1.0, c1 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3635 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3636 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 2, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3639 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 1, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3640 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 1, c2 == 10, 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" 
+rule "#3643 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 1, c2 == 7, 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" 
+rule "#3645 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)
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 1, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3647 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3649 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 13, c3 == 1, c2 == 1, 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" 
+rule "#3652 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 11, c2 == 13, 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" 
+rule "#3656 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 11, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5823 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#3658 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 11, c2 == 7, 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" 
+rule "#3660 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 == 3, c3 <= 2.0, c1 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 11, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#5829 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#3661 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, c1 > 1.0, c3 <= 2.0, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 11, c2 == 4, 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" 
+rule "#3662 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, c1 <= 1.0, c2 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 11, c2 == 3, 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" 
+rule "#3664 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 == 1, c2 <= 3.0, c1 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 11, c2 == 1, 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" 
+rule "#3667 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 == 1, c2 > 3.0, c3 <= 2.0, c1 <= 8, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 8, c2 == 13, 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" 
+rule "#3674 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 8, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3675 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 8, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3679 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3680 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 7, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3681 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 7, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 7, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3688 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 7, c2 == 10, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3689 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 7, c2 == 10, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3697 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 7, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3708 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3711 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 6, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3715 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 6, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 5, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3720 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 5, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 5, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3722 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 5, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3723 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 5, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3725 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 5, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3726 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 5, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3731 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 4, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3735 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 4, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3737 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 4, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3739 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 4, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3740 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 4, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3741 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 4, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3742 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 4, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3746 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 3, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3747 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 3, c2 == 10, 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(c4 == 12, c5 == 12, c1 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3751 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3755 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 3, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3756 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3759 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3760 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3764 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3765 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3770 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3771 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 1, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3775 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3777 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 1, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3779 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 12, c1 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3783 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3784 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3786 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 10, 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" 
+rule "#3787 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 9, 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" 
+rule "#3789 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)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 7, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 7, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3798 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 7, c2 == 4, 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" 
+rule "#3802 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 6, 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" 
+rule "#3803 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, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 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" 
+rule "#3806 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, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3810 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 1, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#3811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 1, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3813 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 13, c1 == 1, c2 == 7, 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(c4 == 12, c5 == 11, c3 == 13, c1 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3820 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 12, c2 == 13, 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" 
+rule "#3821 poker_hand = 3 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)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3830 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 12, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3840 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 12, c2 == 2, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3842 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 12, c2 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3844 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 12, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3845 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3851 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 11, c1 == 10, c2 == 10, 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(c4 == 12, c5 == 11, c3 == 11, c1 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3861 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 11, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 11, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3865 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3866 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 11, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3873 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 11, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3879 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 11, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3889 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 9, c2 == 10, 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(c4 == 12, c5 == 11, c3 == 10, c1 == 9, c2 == 5, 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" 
+rule "#3899 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, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3901 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 7, c2 == 12, 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" 
+rule "#3909 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 7, c2 == 4, 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" 
+rule "#3913 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 6, 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" 
+rule "#3914 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)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 10, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3919 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 9, c1 == 13, 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" 
+rule "#3922 poker_hand = 4 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)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 9, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
 end
 
-rule "#5912 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#3923 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, c5 > 2.0, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3924 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 9, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#3927 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 9, c1 == 5, 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" 
+rule "#3928 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, c5 > 2.0, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3936 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 8, c2 == 9, 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" 
+rule "#3941 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, c3 <= 4.5, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 8, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3945 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 7, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3948 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 7, c2 == 12, c1 == 11, 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(c4 == 12, c5 == 11, c3 == 7, c2 == 12, c1 == 9, 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" 
+rule "#3959 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 == 1, c2 <= 9.0, c3 <= 12, c1 <= 4.5, c5 > 4.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 7, c2 == 11, 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" 
+rule "#3960 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, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 7, c2 == 10, 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" 
+rule "#3961 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, c4 <= 5.0, c1 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 7, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3966 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 7, c2 == 5, c1 == 12, 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" 
+rule "#3985 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 == 1, c2 > 9.0, c4 > 5.0, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 5, c2 == 11, 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" 
+rule "#3986 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 5, c2 == 10, 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" 
+rule "#3988 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, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 5, c2 == 8, 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" 
+rule "#3993 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 5, c2 == 3, 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" 
+rule "#3996 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 4, 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" 
+rule "#3998 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)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5954 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#3999 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)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 11, 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" 
+rule "#4014 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 4, c2 == 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" 
+rule "#4015 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)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4031 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4032 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 2, c2 == 1, 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" 
+rule "#4033 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 3, c1 == 1, 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" 
+rule "#4034 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)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 2, c2 == 11, 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" 
+rule "#4037 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 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 2, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4038 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 2, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4039 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 2, c2 == 8, 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(c4 == 12, c5 == 11, c3 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4041 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4043 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4045 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 2, c2 == 2, 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" 
+rule "#4046 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, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 2, c2 == 1, 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" 
+rule "#4050 poker_hand = 4 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#4052 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 8, 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" 
+rule "#4053 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4054 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4055 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 6, c1 == 12, 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" 
+rule "#4067 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, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4068 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4069 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4070 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4071 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 11, c3 == 1, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4072 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 13, c2 == 13, 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" 
+rule "#4073 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, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 13, c2 == 12, 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" 
+rule "#4078 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 13, c2 == 7, 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" 
+rule "#4081 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 13, c2 == 4, 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" 
+rule "#4083 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, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 13, c2 == 2, 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" 
+rule "#4086 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 == 1, c4 > 2.0, c1 > 2.5, c2 > 2.5, c3 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4090 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 12, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4091 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 12, c3 == 7, 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(c4 == 12, c5 == 10, c1 == 12, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4096 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 12, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4097 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 12, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4098 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 11, c2 == 13, 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" 
+rule "#4101 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 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 11, c2 == 10, 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" 
+rule "#4104 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 11, c2 == 7, 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" 
+rule "#4108 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 > 5.0, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 11, c2 == 4, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4112 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 11, c2 == 4, c3 == 8, 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" 
+rule "#4120 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)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 11, c2 == 3, 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" 
+rule "#4122 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 11, c2 == 1, 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" 
+rule "#4123 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)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 10, c2 == 13, 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" 
+rule "#4126 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 == 2, c1 > 1.0, c3 > 10.0, c2 > 10.5, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4127 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 10, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4130 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 10, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4140 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 12, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4144 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 12, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4165 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 7, c2 == 2, 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" 
+rule "#4166 poker_hand = 5 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)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 7, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#4168 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 5, c2 == 13, 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" 
+rule "#4171 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 == 4, c5 > 3.0, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 5, c2 == 10, 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" 
+rule "#4182 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 3, 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" 
+rule "#4183 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 9, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4185 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 8, c2 == 13, 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" 
+rule "#4188 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 8, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4189 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 8, c2 == 9, 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" 
+rule "#4194 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 8, c2 == 4, 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" 
+rule "#4196 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 8, c2 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4203 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 8, c2 == 3, c3 == 5, 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" 
+rule "#4206 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 8, c2 == 3, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4210 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 13, 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" 
+rule "#4211 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, c2 <= 11.5, c1 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 12, 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" 
+rule "#4213 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 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 10, c3 == 13, 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" 
+rule "#4216 poker_hand = 3 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4223 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 10, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4226 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 9, 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" 
+rule "#4228 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 7, 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" 
+rule "#4229 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, c2 > 9.5, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4230 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4232 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 7, c2 == 3, 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" 
+rule "#4235 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, c2 > 9.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 13, 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" 
+rule "#4236 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, c1 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 12, 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" 
+rule "#4237 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 11, 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" 
+rule "#4238 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 <= 4.5, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4239 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 9, 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" 
+rule "#4240 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4242 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 6, 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" 
+rule "#4243 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, c1 > 3.0, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 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" 
+rule "#4245 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, c2 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 3, 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" 
+rule "#4247 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)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 6, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4251 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4255 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 13, c2 == 6, 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" 
+rule "#4263 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 10, 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" 
+rule "#4264 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)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4266 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4268 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 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" 
+rule "#4270 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 3, 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" 
+rule "#4271 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 5, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4273 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 13, 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" 
+rule "#4274 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4276 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4278 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 8, 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" 
+rule "#4282 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, c3 > 3.0, c4 > 1.5, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 7, c3 == 10, 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" 
+rule "#4289 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 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 7, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 5, 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" 
+rule "#4294 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 <= 4.0, c2 <= 10.5, c3 <= 7.0, c4 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4296 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 2, 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" 
+rule "#4297 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 4, c2 == 1, 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" 
+rule "#4299 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4305 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4309 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 3, c2 == 4, c3 == 11, 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" 
+rule "#4317 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)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 3, c2 == 4, c3 == 3, 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" 
+rule "#4323 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, c2 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 13, 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" 
+rule "#4326 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 10, 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" 
+rule "#4330 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4339 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 9, c2 == 1, 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" 
+rule "#4344 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 4, 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" 
+rule "#4345 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 == 2, c1 <= 13, c3 > 2.0, c4 <= 12.5, c5 <= 12.0, c2 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 3, 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" 
+rule "#4347 poker_hand = 2 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, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 2, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4351 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 2, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4359 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 2, c3 == 1, 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" 
+rule "#4360 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4364 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 13, c3 == 9, 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" 
+rule "#4374 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 > 1.0, c2 > 6.5, c5 <= 5.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 11, 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" 
+rule "#4375 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 10, 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" 
+rule "#4386 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 7, c3 == 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" 
+rule "#4390 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)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 7, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6306 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#4392 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, c3 > 2.0, c1 <= 2.0, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 10, c1 == 1, c2 == 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" 
+rule "#4404 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, c1 <= 13, c3 <= 12.0, c2 <= 6.5, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 7, c3 == 12, 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" 
+rule "#4406 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, c3 <= 12.0, c2 > 6.5, c4 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 7, c3 == 10, 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" 
+rule "#4410 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, c3 > 12.0, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 7, c3 == 6, 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" 
+rule "#4411 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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4413 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 7, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4419 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 13, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4429 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 11, c2 == 13, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4435 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 11, c2 == 13, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#4439 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 11, c2 == 9, 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" 
+rule "#4443 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 11, c2 == 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" 
+rule "#4446 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, c1 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 11, c2 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4451 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 11, c2 == 4, c3 == 6, 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" 
+rule "#4458 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, c1 > 6.5, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 11, c2 == 2, 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" 
+rule "#4460 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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 10, c2 == 12, 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" 
+rule "#4462 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, c2 > 2.5, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4463 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 10, c2 == 10, 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" 
+rule "#4464 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 10, c2 == 9, 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" 
+rule "#4468 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 10, c2 == 5, 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" 
+rule "#4475 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, c3 <= 11.5, c5 <= 13, c2 <= 11.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 10, c2 == 1, c3 == 10, 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" 
+rule "#4481 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 10, c2 == 1, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4487 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 9, c2 == 11, 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" 
+rule "#4488 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 <= 1.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 9, c2 == 10, 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" 
+rule "#4490 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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 9, c2 == 8, 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" 
+rule "#4493 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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 9, c2 == 5, 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" 
+rule "#4494 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, c1 > 2.5, c5 > 7.5, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 9, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4496 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 9, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4497 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 9, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4501 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 8, c2 == 10, 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" 
+rule "#4508 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, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 8, c2 == 3, 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" 
+rule "#4511 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, c3 > 5.0, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 13, 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" 
+rule "#4512 poker_hand = 3 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4514 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4516 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 8, 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" 
+rule "#4519 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 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 6, 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" 
+rule "#4526 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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 6, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4532 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4533 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 3, 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" 
+rule "#4534 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4535 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 7, c3 == 1, 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" 
+rule "#4538 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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 6, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4540 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 6, c2 == 9, 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" 
+rule "#4544 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 <= 3.0, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 6, c2 == 5, 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" 
+rule "#4547 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 > 3.0, c3 <= 12.0, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 6, c2 == 2, c3 == 13, 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" 
+rule "#4549 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 > 3.0, c3 <= 12.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 6, c2 == 2, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4554 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 6, c2 == 2, c3 == 6, 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" 
+rule "#4563 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 > 3.0, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 5, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4564 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 5, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4565 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 5, c3 == 9, 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" 
+rule "#4566 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 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 5, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4570 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 5, c3 == 4, 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" 
+rule "#4571 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 5, c3 == 3, 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" 
+rule "#4581 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 4, c3 == 6, 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(c4 == 12, c5 == 9, c1 == 4, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4586 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4587 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 3, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4593 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 3, c3 == 7, 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" 
+rule "#4595 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 3, c3 == 5, 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" 
+rule "#4597 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 3, c3 == 3, 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" 
+rule "#4601 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 3, c3 == 2, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4608 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 3, c3 == 2, c2 == 3, 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" 
+rule "#4611 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 3, c3 == 1, 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" 
+rule "#4615 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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 2, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4619 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 2, c2 == 6, 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(c4 == 12, c5 == 9, c1 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4621 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4622 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 2, c2 == 3, 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" 
+rule "#4623 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, c1 > 2.0, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 2, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4624 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 2, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4625 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 13, 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" 
+rule "#4628 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4629 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 9, 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" 
+rule "#4631 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)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4633 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 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" 
+rule "#4634 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 == 4, c3 <= 12.5, c4 > 1.0, c1 <= 11.5, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4636 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4638 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 1, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 1, c3 == 4, 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" 
+rule "#4647 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 9, c1 == 1, c2 == 1, c3 == 3, 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" 
+rule "#4651 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 12, 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" 
+rule "#4652 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 11, 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" 
+rule "#4653 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 10, 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" 
+rule "#4654 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, c3 <= 6.5, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 9, 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" 
+rule "#4655 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 == 4, c5 > 5.0, c2 <= 10.5, c3 > 6.0, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4659 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4660 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 13, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4663 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 12, c1 == 13, 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" 
+rule "#4665 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, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 12, c1 == 11, 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" 
+rule "#4667 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 12, c1 == 9, 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" 
+rule "#4668 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 == 3, c1 > 1.5, c2 > 6.0, c3 > 11.0, c4 <= 9.0, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4673 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 12, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4674 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4676 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 11, c1 == 13, 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" 
+rule "#4678 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, c5 > 2.5, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 11, c1 == 11, 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" 
+rule "#4680 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 == 2, c4 > 2.0, c3 <= 2.0, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#4682 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 11, c1 == 7, 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" 
+rule "#4684 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 11, c1 == 5, 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" 
+rule "#4685 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, c5 <= 1.0, c2 <= 6, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 11, c1 == 4, 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" 
+rule "#4687 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 11, c1 == 2, 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" 
+rule "#4690 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 10, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4692 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 10, c1 == 10, 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(c4 == 12, c5 == 8, c3 == 10, c1 == 9, 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" 
+rule "#4694 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, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 10, c1 == 6, 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(c4 == 12, c5 == 8, c3 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4698 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 10, c1 == 4, 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" 
+rule "#4699 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 10, c1 == 3, 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" 
+rule "#4701 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 10, c1 == 1, 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" 
+rule "#4704 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 9, c1 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4707 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 9, c1 == 11, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#4710 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 9, c1 == 11, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4717 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 9, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4720 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4725 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 9, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4726 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#4727 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 8, c1 == 13, 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" 
+rule "#4729 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 8, c1 == 11, 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" 
+rule "#4732 poker_hand = 7 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 8, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (7)");
+end
+
+rule "#4733 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 8, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4736 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 8, c1 == 4, 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" 
+rule "#4737 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 > 3.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 8, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4739 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 8, c1 == 1, 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(c4 == 12, c5 == 8, c3 == 7, c1 == 13, 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" 
+rule "#4743 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 7, c1 == 10, 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" 
+rule "#4745 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 7, c1 == 8, 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" 
+rule "#4746 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 == 2, c1 > 4.0, c3 <= 8.0, c2 <= 6.0, c4 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 7, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4748 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 7, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4749 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 7, c1 == 4, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4750 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 7, c1 == 4, c2 == 12, 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" 
+rule "#4752 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 7, c1 == 4, c2 == 10, 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" 
+rule "#4763 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, c2 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 7, c1 == 2, 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" 
+rule "#4765 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 13, c1 == 13, 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" 
+rule "#4770 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4774 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 13, c1 == 4, 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" 
+rule "#4781 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4782 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4789 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4792 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 7, c1 == 4, 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" 
+rule "#4796 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, c1 > 1.0, c2 > 2.5, c4 > 2.5, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4799 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 3, 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" 
+rule "#4800 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 > 10.5, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4801 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 6, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4802 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4804 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4805 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 5, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4807 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 5, c1 == 8, 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" 
+rule "#4814 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)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4816 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 13, c2 == 12, 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(c4 == 12, c5 == 8, c3 == 4, c1 == 13, c2 == 11, 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" 
+rule "#4820 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4824 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4830 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 10, 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" 
+rule "#4834 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 == 1, c3 > 2.5, c1 <= 13, c5 <= 12, c4 > 11.0, c2 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 6, 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" 
+rule "#4835 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4846 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4849 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 2, c2 == 2, 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" 
+rule "#4851 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 4, c1 == 1, 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" 
+rule "#4852 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 > 2.5, c4 <= 10.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 3, c2 == 13, 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" 
+rule "#4853 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 3, c2 == 12, 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" 
+rule "#4857 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 3, c2 == 8, 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" 
+rule "#4858 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 3, c2 == 7, 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" 
+rule "#4859 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 3, c2 == 6, 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" 
+rule "#4861 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)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 3, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4863 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 3, c2 == 2, 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" 
+rule "#4864 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 == 2, c4 > 1.5, c1 > 2.5, c3 > 10.0, c5 > 6.0, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 3, c2 == 1, 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" 
+rule "#4868 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, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4869 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 2, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4876 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 2, c1 == 2, 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" 
+rule "#4878 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 > 4.0, c4 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 1, s3 == 4, c1 == 13, 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(c4 == 12, c5 == 8, c3 == 1, s3 == 4, c1 == 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" 
+rule "#4887 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 8, c3 == 1, s3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4894 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 13, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 13, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4897 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 13, c2 == 10, 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" 
+rule "#4899 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4901 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4902 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 13, c2 == 5, 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" 
+rule "#4903 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 13, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4905 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 13, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4906 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 11, c3 == 12, 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" 
+rule "#4912 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, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 11, c3 == 9, 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" 
+rule "#4913 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, c5 <= 13, c3 <= 1.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 11, c3 == 8, 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" 
+rule "#4915 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 11, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4917 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 11, c3 == 4, 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" 
+rule "#4918 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 11, c3 == 3, 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" 
+rule "#4919 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 11, c3 == 2, 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" 
+rule "#4924 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, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 9, c2 == 11, 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" 
+rule "#4925 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4927 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 9, c2 == 8, 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" 
+rule "#4928 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 9, c2 == 7, 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" 
+rule "#4929 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, c2 > 5.0, c3 > 6.5, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 9, c2 == 6, 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" 
+rule "#4930 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 9, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 8, c2 == 10, 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" 
+rule "#4939 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 > 5.5, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 8, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4943 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 8, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4950 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 8, c2 == 4, c3 == 7, 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" 
+rule "#4951 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 > 5.5, c4 > 3.5, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 8, c2 == 4, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4961 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 7, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4962 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 7, c3 == 11, 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" 
+rule "#4966 poker_hand = 3 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 7, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4972 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 7, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4974 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4975 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 11, 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" 
+rule "#4977 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 == 1, c5 > 1.5, c3 <= 3.0, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 9, 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" 
+rule "#4978 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4981 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 5, 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" 
+rule "#4982 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 == 1, c5 > 1.5, c3 > 3.0, c2 > 4.0, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 4, 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" 
+rule "#4984 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 2, 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" 
+rule "#4985 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 6, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4987 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 5, c3 == 12, 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" 
+rule "#4992 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 5, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4994 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 5, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4996 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 5, c3 == 3, 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" 
+rule "#4997 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, c5 <= 9.0, c2 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 5, c3 == 2, 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" 
+rule "#4998 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, c5 > 9.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 5, c3 == 1, 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" 
+rule "#5006 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 3, c3 == 13, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6838 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5013 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 3, c3 == 12, 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" 
+rule "#5019 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 3, c3 == 6, 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(c4 == 12, c5 == 7, c1 == 3, c3 == 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" 
+rule "#5021 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, c2 > 3.5, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 3, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6857 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5022 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, c4 > 4.0, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 3, c3 == 3, 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" 
+rule "#5023 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, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 3, c3 == 2, 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" 
+rule "#5027 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 13, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5028 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5031 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 13, c2 == 7, 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" 
+rule "#5033 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 <= 9.5, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 13, c2 == 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" 
+rule "#5037 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, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 13, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5038 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 12, 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" 
+rule "#5039 poker_hand = 5 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#5041 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5042 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 8, 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" 
+rule "#5044 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 == 3, c4 > 3.5, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 6, 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" 
+rule "#5045 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 == 3, c4 > 3.5, c1 > 1.5, c2 <= 3.0, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 2, c3 == 5, 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" 
+rule "#5050 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 == 3, c4 > 3.5, c1 > 1.5, c2 > 3.0, c3 > 1.5, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5051 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 12, 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" 
+rule "#5052 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 11, 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" 
+rule "#5054 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, c5 > 13, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 9, 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" 
+rule "#5055 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, c5 <= 13, c1 <= 9.5, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5066 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 5, c2 == 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" 
+rule "#5067 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, c5 <= 13, c1 > 9.5, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 5, c2 == 4, 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" 
+rule "#5071 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, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 4, 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" 
+rule "#5073 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)
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5074 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 7, c1 == 1, c3 == 1, 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" 
+rule "#5076 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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 12, 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" 
+rule "#5077 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, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5079 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 10, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5086 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 10, c2 == 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" 
+rule "#5094 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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5095 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 5, 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" 
+rule "#5104 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 2, c2 == 7, 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" 
+rule "#5109 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 2, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5114 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 1, c2 == 10, 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" 
+rule "#5123 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 13, c3 == 1, c2 == 1, 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" 
+rule "#5124 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, c2 > 2.0, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 13, 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" 
+rule "#5125 poker_hand = 3 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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#6936 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5126 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 == 2, c3 <= 8.0, c4 > 3.5, c1 <= 11.5, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5127 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 10, 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(c4 == 12, c5 == 6, c1 == 12, c2 == 9, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5139 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 9, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5141 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5142 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5147 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 12, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5150 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 11, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5153 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 11, c3 == 9, 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(c4 == 12, c5 == 6, c1 == 11, c3 == 8, 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" 
+rule "#5156 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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 11, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 11, c3 == 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" 
+rule "#5159 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 11, c3 == 3, 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" 
+rule "#5164 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 10, c2 == 11, 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" 
+rule "#5165 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 10, c2 == 10, 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" 
+rule "#5171 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 <= 7, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 10, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 10, c2 == 3, 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(c4 == 12, c5 == 6, c1 == 10, c2 == 1, 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" 
+rule "#5176 poker_hand = 3 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 > 7, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 10, c3 == 9, 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" 
+rule "#5184 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 10, c3 == 7, 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" 
+rule "#5191 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, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 9, 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" 
+rule "#5193 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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5195 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 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" 
+rule "#5196 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 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 4, 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" 
+rule "#5197 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 > 5.0, c3 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 3, 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" 
+rule "#5198 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 == 2, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6978 poker_hand = 5 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5199 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 == 2, c3 <= 11.5, c1 > 1.0, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 9, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6984 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5203 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, c5 <= 2.5, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 8, c3 == 10, 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" 
+rule "#5204 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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 8, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5212 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 8, c3 == 7, c2 == 7, 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(c4 == 12, c5 == 6, c1 == 8, c3 == 7, c2 == 5, 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" 
+rule "#5221 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, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 8, c3 == 4, 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" 
+rule "#5222 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, c4 > 5.0, c3 > 3.0, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 8, c3 == 3, 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" 
+rule "#5223 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 8, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5224 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 8, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5225 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5226 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 12, 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" 
+rule "#5227 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 11, 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" 
+rule "#5228 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 10, 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" 
+rule "#5229 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 9, 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" 
+rule "#5230 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 8, 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" 
+rule "#5231 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.5, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 7, 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" 
+rule "#5233 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 5, 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" 
+rule "#5235 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 7, c2 == 3, 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" 
+rule "#5239 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 5, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7032 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5240 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 5, c2 == 12, 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" 
+rule "#5243 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, c1 <= 10.5, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 5, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5244 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 5, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5245 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5249 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 5, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5253 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 12, 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" 
+rule "#5255 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, c1 > 10.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 10, 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" 
+rule "#5257 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 8, 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" 
+rule "#5259 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 6, 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" 
+rule "#5264 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 4, c3 == 1, 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" 
+rule "#5265 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, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 13, c2 == 13, 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" 
+rule "#5268 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 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 13, c2 == 10, 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(c4 == 12, c5 == 6, c1 == 3, c3 == 13, c2 == 6, 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" 
+rule "#5277 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, c4 > 1.5, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 13, c2 == 1, 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" 
+rule "#5279 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 == 4, c5 > 1.5, c3 <= 12.5, c1 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 11, 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" 
+rule "#5283 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 10, c2 == 10, 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" 
+rule "#5288 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, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 10, c2 == 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" 
+rule "#5295 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5303 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 6, c2 == 6, 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" 
+rule "#5313 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 == 2, c1 > 1.0, c2 > 1.0, c5 <= 10.5, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 4, c2 == 10, 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" 
+rule "#5320 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, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 4, c2 == 3, 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" 
+rule "#5323 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 3, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5326 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 2, c2 == 13, 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" 
+rule "#5327 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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 2, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5329 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 2, c2 == 10, 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" 
+rule "#5331 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 2, c2 == 8, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5336 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 2, c2 == 8, c3 == 8, 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" 
+rule "#5343 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, c1 > 5.5, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 2, c2 == 8, c3 == 1, 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" 
+rule "#5348 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 > 1.0, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 2, c2 == 3, 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" 
+rule "#5350 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 2, c2 == 1, 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" 
+rule "#5357 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, c4 > 5.5, c1 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 7, 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" 
+rule "#5363 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)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 5, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5367 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 5, c3 == 5, 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" 
+rule "#5368 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 5, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5372 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5374 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5380 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5381 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 6, c1 == 1, c2 == 4, c3 == 4, 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" 
+rule "#5389 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 13, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5392 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 13, c2 == 9, 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" 
+rule "#5393 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 13, c2 == 8, 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" 
+rule "#5399 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, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 13, c2 == 2, 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" 
+rule "#5403 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 12, c1 == 11, 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" 
+rule "#5414 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, c1 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 12, c1 == 8, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5415 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 12, c1 == 8, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5422 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 12, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5423 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 12, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5427 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 11, c1 == 8, 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" 
+rule "#5436 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 11, c1 == 3, 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" 
+rule "#5437 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 11, c1 == 2, 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" 
+rule "#5443 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, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 9, c2 == 13, 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" 
+rule "#5444 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5448 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 9, c2 == 8, 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" 
+rule "#5456 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 <= 13, c1 > 2.0, c4 > 5.0, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 13, 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" 
+rule "#5457 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 12, 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" 
+rule "#5458 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5460 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5463 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 5, 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" 
+rule "#5465 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 4, 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" 
+rule "#5476 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5478 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 3, c2 == 1, 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" 
+rule "#5484 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 1, c2 == 9, 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" 
+rule "#5492 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 8, c1 == 1, c2 == 1, 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" 
+rule "#5493 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 == 4, c4 <= 8.5, c3 > 11.0, c2 > 3.5, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 7, c1 == 13, 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" 
+rule "#5500 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 7, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5503 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 7, c1 == 3, 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" 
+rule "#5512 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 6, c1 == 13, c2 == 7, 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" 
+rule "#5514 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 6, c1 == 13, c2 == 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(c4 == 12, c5 == 5, c3 == 6, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5525 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 6, c1 == 9, c2 == 10, 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" 
+rule "#5529 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 <= 8.5, c3 <= 7.5, c4 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 6, c1 == 9, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7274 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5535 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 6, c1 == 8, 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" 
+rule "#5538 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, c2 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 6, c1 == 5, 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" 
+rule "#5539 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, c3 <= 7.5, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 6, c1 == 4, 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" 
+rule "#5540 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, c3 <= 3.0, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 6, c1 == 3, 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" 
+rule "#5545 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 12, 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" 
+rule "#5546 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5551 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5561 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5563 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 4, c1 == 3, 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" 
+rule "#5566 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 3, 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(c4 == 12, c5 == 5, c3 == 4, c2 == 2, 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" 
+rule "#5568 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, c4 > 4.0, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 4, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5570 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 12, 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" 
+rule "#5572 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5574 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 8, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#5580 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 8, c1 == 7, 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" 
+rule "#5587 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5588 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 6, 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" 
+rule "#5589 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, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5590 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 4, 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" 
+rule "#5591 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5592 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 3, c2 == 2, 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(c4 == 12, c5 == 5, c3 == 2, c1 == 9, 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" 
+rule "#5599 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 2, c1 == 8, 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(c4 == 12, c5 == 5, c3 == 2, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5608 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5618 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 11, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5621 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 11, c2 == 1, 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" 
+rule "#5622 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)
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5623 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5628 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5629 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5630 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 5, c3 == 1, c1 == 2, 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" 
+rule "#5633 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, c1 <= 11.5, c5 > 4.0, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 13, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 13, c2 == 11, 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" 
+rule "#5635 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)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 13, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5637 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 13, c2 == 8, 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" 
+rule "#5638 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 13, c2 == 7, 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" 
+rule "#5644 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 13, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5648 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 12, s3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5650 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 11, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 11, c2 == 10, 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" 
+rule "#5655 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 11, c2 == 7, 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" 
+rule "#5656 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 == 2, c5 <= 1.5, c1 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 11, c2 == 6, 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" 
+rule "#5657 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 11, c2 == 5, 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" 
+rule "#5658 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)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 11, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5661 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 11, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5662 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 13, 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" 
+rule "#5663 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 12, 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" 
+rule "#5664 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 == 2, c5 > 1.5, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 11, 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" 
+rule "#5665 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 10, 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" 
+rule "#5666 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, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5668 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 7, 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" 
+rule "#5669 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, c5 > 2.5, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 6, 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" 
+rule "#5670 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, c5 > 2.5, c1 > 4.5, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5672 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 3, 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" 
+rule "#5676 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, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 2, c2 == 10, 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" 
+rule "#5685 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 > 4.5, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 10, c3 == 2, c2 == 1, 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" 
+rule "#5687 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 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 13, 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" 
+rule "#5690 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 > 6.0, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 10, 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" 
+rule "#5691 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5693 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 7, 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" 
+rule "#5697 poker_hand = 2 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)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#7413 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5708 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, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 4, c2 == 1, 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" 
+rule "#5709 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5710 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 9, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 8, c2 == 12, 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" 
+rule "#5715 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 > 11.5, c4 <= 10.0, c3 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 8, c2 == 10, 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" 
+rule "#5716 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 <= 11.5, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 8, c2 == 9, 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" 
+rule "#5720 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 <= 11.5, c3 > 2.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 8, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 8, c2 == 4, 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" 
+rule "#5722 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 8, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5725 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 13, 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" 
+rule "#5726 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 > 3.0, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5728 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 10, c2 == 13, 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" 
+rule "#5731 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5741 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 9, 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" 
+rule "#5742 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 8, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5743 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 8, c2 == 12, 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" 
+rule "#5756 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 6, 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" 
+rule "#5758 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 4, 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" 
+rule "#5759 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 7, c3 == 3, 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" 
+rule "#5762 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 13, 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" 
+rule "#5763 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 12, 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" 
+rule "#5765 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 10, 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" 
+rule "#5767 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, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 8, 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" 
+rule "#5769 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)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 6, 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" 
+rule "#5770 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 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" 
+rule "#5782 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 <= 11.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 3, c3 == 3, 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(c4 == 12, c5 == 4, c1 == 6, c2 == 3, c3 == 2, 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" 
+rule "#5785 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 > 2.0, c4 > 4.5, c3 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 2, 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" 
+rule "#5786 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 <= 2.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 6, c2 == 1, 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" 
+rule "#5788 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, c5 <= 8.5, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 5, c2 == 12, 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" 
+rule "#5789 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, c5 > 8.5, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 5, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7572 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5792 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 5, c2 == 8, 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" 
+rule "#5793 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)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 5, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5794 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 5, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5796 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 5, c2 == 4, 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" 
+rule "#5797 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, c4 > 2.0, c3 <= 4.0, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 5, c2 == 3, 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" 
+rule "#5800 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 == 2, c2 > 10.0, c1 <= 8.0, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 4, c2 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 4, c2 == 13, c3 == 10, 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" 
+rule "#5815 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, c5 <= 7.5, c3 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 4, c2 == 10, 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" 
+rule "#5819 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)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 4, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5821 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 4, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5825 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 3, c3 == 13, 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" 
+rule "#5827 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, c4 > 1.0, c5 > 2.0, c2 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 3, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 3, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5830 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 3, c3 == 8, 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" 
+rule "#5833 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 <= 8.5, c2 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 3, c3 == 5, 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" 
+rule "#5838 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 3, c3 == 3, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5844 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 3, c3 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5850 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 2, c2 == 13, 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" 
+rule "#5853 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 2, c2 == 10, 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" 
+rule "#5854 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5857 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5858 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 2, c2 == 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" 
+rule "#5869 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 2, c2 == 3, c3 == 4, 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" 
+rule "#5872 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 2, c2 == 3, c3 == 1, 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" 
+rule "#5876 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 1, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5877 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 1, c2 == 11, 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" 
+rule "#5879 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 1, c2 == 9, 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" 
+rule "#5882 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)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 1, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5883 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 1, c2 == 5, 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" 
+rule "#5885 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 <= 10.0, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 4, c1 == 1, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5890 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 13, c1 == 13, c2 == 11, 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" 
+rule "#5898 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 == 4, c3 > 6.5, c1 > 1.0, c2 > 4.0, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 13, c1 == 13, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5900 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 13, c1 == 13, c2 == 1, 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" 
+rule "#5902 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5903 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 13, c1 == 10, 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" 
+rule "#5905 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 <= 3.5, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5906 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 13, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5909 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 13, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#5913 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5916 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 12, c1 == 10, 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" 
+rule "#5920 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 12, c1 == 6, 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" 
+rule "#5921 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5922 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 12, c1 == 4, 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" 
+rule "#5923 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 <= 3.0, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 12, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#7674 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#5924 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 12, c1 == 2, 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" 
+rule "#5929 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 12, c1 == 1, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5937 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 12, c1 == 1, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5939 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 11, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5946 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 11, c2 == 5, c1 == 13, 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" 
+rule "#5947 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 11, c2 == 5, c1 == 12, 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(c4 == 12, c5 == 3, c3 == 11, c2 == 4, c1 == 13, 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" 
+rule "#5968 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 11, c2 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5975 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 10, c1 == 13, 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" 
+rule "#5977 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 == 4, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 10, c1 == 11, 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" 
+rule "#5980 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 10, c1 == 8, 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" 
+rule "#5982 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 10, c1 == 6, 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" 
+rule "#5986 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 10, c1 == 2, 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" 
+rule "#5987 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 10, c1 == 1, 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" 
+rule "#5988 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 == 1, c1 > 2.0, c5 > 2.0, c2 > 2.0, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 13, 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" 
+rule "#5990 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 == 1, c1 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 11, c2 == 13, 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(c4 == 12, c5 == 3, c3 == 9, c1 == 11, c2 == 12, 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" 
+rule "#6004 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 9, 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" 
+rule "#6013 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, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 7, c2 == 6, 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" 
+rule "#6016 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 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 9, c1 == 7, c2 == 3, 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" 
+rule "#6026 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)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 13, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6034 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 13, c2 == 4, 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" 
+rule "#6038 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 12, 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" 
+rule "#6039 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 > 7.0, c4 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 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" 
+rule "#6040 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6044 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 8, c2 == 11, 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" 
+rule "#6051 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)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 8, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6052 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6057 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 5, 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" 
+rule "#6059 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 3, 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" 
+rule "#6060 poker_hand = 5 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 8, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#6071 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 7, c1 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 7, c1 == 9, 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" 
+rule "#6082 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6083 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 7, c1 == 4, 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(c4 == 12, c5 == 3, c3 == 7, c1 == 3, 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" 
+rule "#6089 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 > 3.5, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 11, 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" 
+rule "#6092 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, c4 <= 10.5, c3 <= 5.5, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 10, c2 == 11, 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(c4 == 12, c5 == 3, c3 == 6, c1 == 10, c2 == 10, 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" 
+rule "#6096 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 10, c2 == 7, 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" 
+rule "#6101 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)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 10, c2 == 2, 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" 
+rule "#6105 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 7, 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" 
+rule "#6110 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, c1 > 8.0, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 2, 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" 
+rule "#6111 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 6, c1 == 1, 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" 
+rule "#6112 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 == 3, c5 <= 11.0, c3 > 1.0, c4 <= 9.0, c1 > 12.5, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 5, c1 == 13, 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" 
+rule "#6113 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 5, c1 == 12, 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" 
+rule "#6115 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 == 3, c5 <= 11.0, c3 > 1.0, c4 > 9.0, c1 > 6.0, c2 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 5, c1 == 10, 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" 
+rule "#6120 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 == 3, c5 <= 11.0, c3 <= 1.0, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 5, c1 == 7, c2 == 11, 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" 
+rule "#6124 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 5, c1 == 7, c2 == 7, 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" 
+rule "#6134 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, c1 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 5, c1 == 3, 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" 
+rule "#6137 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)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6138 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6140 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6142 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 8, 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" 
+rule "#6143 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)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6145 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6146 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 4, 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" 
+rule "#6147 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 3, 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" 
+rule "#6149 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 4, c2 == 1, 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" 
+rule "#6151 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 == 4, c1 > 6.5, c2 > 4.0, c4 > 5.0, c3 > 4.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6152 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 3, c2 == 11, 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" 
+rule "#6155 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 == 4, c1 > 6.5, c2 > 4.0, c4 > 5.0, c3 <= 4.0, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 3, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6159 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6165 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 12, c1 == 9, 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(c4 == 12, c5 == 3, c3 == 2, c2 == 11, 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" 
+rule "#6178 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, c1 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 10, 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" 
+rule "#6179 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, c2 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 9, 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" 
+rule "#6180 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7862 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#6183 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 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" 
+rule "#6184 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 4, 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" 
+rule "#6186 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 > 3.0, c4 <= 8.0, c5 <= 4.0, c1 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6187 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 2, c2 == 1, 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" 
+rule "#6188 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 1, c2 == 13, 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" 
+rule "#6194 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)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 1, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6195 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 1, c2 == 6, 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" 
+rule "#6197 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)
+		 examples.Poker(c4 == 12, c5 == 3, c3 == 1, c2 == 4, 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(c4 == 12, c5 == 3, c3 == 1, c2 == 1, 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" 
+rule "#6201 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6202 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 13, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6206 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 13, c2 == 8, 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" 
+rule "#6208 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 > 2.5, c3 <= 10.0, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 13, c2 == 6, 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" 
+rule "#6209 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 > 2.5, c3 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 13, c2 == 5, 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" 
+rule "#6213 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 13, c2 == 3, c3 == 11, 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" 
+rule "#6222 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 > 10.0, c3 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 13, c2 == 3, c3 == 2, 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" 
+rule "#6228 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 12, c2 == 11, 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" 
+rule "#6230 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 12, c2 == 9, 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" 
+rule "#6232 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, c4 > 2.0, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 12, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6235 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 12, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6237 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 12, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6238 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 12, c2 == 1, 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" 
+rule "#6241 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 == 2, c1 <= 12.0, c3 <= 2.0, c2 > 5.0, c4 <= 11.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6245 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 11, c2 == 10, c3 == 10, 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(c4 == 12, c5 == 2, c1 == 11, c2 == 10, c3 == 1, 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" 
+rule "#6256 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 11, c2 == 8, 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" 
+rule "#6259 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 11, c2 == 7, c3 == 11, 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(c4 == 12, c5 == 2, c1 == 11, c2 == 7, c3 == 3, 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" 
+rule "#6270 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 11, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6275 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 11, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6276 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 10, c2 == 13, 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" 
+rule "#6278 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6281 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 10, c2 == 8, 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" 
+rule "#6282 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, c1 > 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 10, c2 == 7, 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" 
+rule "#6283 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 10, c2 == 6, 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" 
+rule "#6285 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 10, c2 == 4, 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" 
+rule "#6286 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 10, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 10, c2 == 1, 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(c4 == 12, c5 == 2, c1 == 9, c3 == 13, 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(c4 == 12, c5 == 2, c1 == 9, c3 == 12, 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" 
+rule "#6291 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6294 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 9, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6295 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 9, c2 == 11, 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" 
+rule "#6298 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 9, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6306 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 8, c2 == 13, 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" 
+rule "#6311 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6319 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 7, 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" 
+rule "#6320 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 6, 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" 
+rule "#6325 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, c5 > 3.5, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 9, c3 == 1, 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" 
+rule "#6328 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, c5 > 3.5, c1 > 2.5, c2 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 8, c3 == 11, 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" 
+rule "#6330 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 8, c3 == 9, 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" 
+rule "#6332 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 8, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6333 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 8, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6335 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 8, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6336 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 8, c3 == 2, 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" 
+rule "#6338 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 8, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6339 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 7, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6341 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 7, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6344 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 7, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6346 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 7, c2 == 6, 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(c4 == 12, c5 == 2, c1 == 7, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 7, c2 == 4, 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(c4 == 12, c5 == 2, c1 == 7, c2 == 3, 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(c4 == 12, c5 == 2, c1 == 6, c2 == 13, c3 == 13, 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" 
+rule "#6358 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6366 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6367 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6369 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6370 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 7, 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" 
+rule "#6372 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 5, 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" 
+rule "#6373 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, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 4, 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" 
+rule "#6376 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 6, c2 == 1, 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" 
+rule "#6378 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)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 5, c2 == 12, 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" 
+rule "#6381 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 5, c2 == 9, 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" 
+rule "#6382 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, c1 > 5.5, c5 > 2.5, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 5, c2 == 8, 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" 
+rule "#6384 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, c1 > 5.5, c5 > 2.5, c3 > 8.0, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 5, c2 == 6, 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(c4 == 12, c5 == 2, c1 == 5, c2 == 4, 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" 
+rule "#6387 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, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 5, c2 == 3, 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" 
+rule "#6388 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.0, c4 <= 6.5, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 5, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6391 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 4, c3 == 12, 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" 
+rule "#6393 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 4, c3 == 10, 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" 
+rule "#6395 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, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 4, c3 == 8, 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" 
+rule "#6396 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, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 4, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6401 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 4, c3 == 2, 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" 
+rule "#6406 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 > 9.0, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 13, c3 == 10, 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" 
+rule "#6414 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, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 13, c3 == 2, 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" 
+rule "#6416 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6419 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 9, 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" 
+rule "#6421 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, c2 <= 13, c1 <= 10.0, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 7, 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" 
+rule "#6423 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, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 5, 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" 
+rule "#6425 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 3, 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" 
+rule "#6427 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 3, c2 == 1, 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" 
+rule "#6428 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 2, c2 == 13, 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" 
+rule "#6430 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 2, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6431 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6433 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 2, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6434 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6435 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6436 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6442 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 1, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6447 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 1, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6450 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 2, c1 == 1, c2 == 4, 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" 
+rule "#6455 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 == 1, c2 > 10.5, c3 > 5.5, c4 > 4.0, c1 > 4.0, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 13, c3 == 12, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 13, c3 == 12, c2 == 7, 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" 
+rule "#6463 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 13, c3 == 12, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6468 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 13, c3 == 11, 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" 
+rule "#6472 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 <= 11.0, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 13, c3 == 10, c2 == 10, 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" 
+rule "#6475 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)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 13, c3 == 10, c2 == 7, 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(c4 == 12, c5 == 1, c1 == 13, c3 == 7, 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" 
+rule "#6487 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 13, c3 == 4, 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" 
+rule "#6488 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, c5 > 2.0, c1 <= 10.5, c2 > 3.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 13, c3 == 3, 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(c4 == 12, c5 == 1, c1 == 13, c3 == 2, 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" 
+rule "#6490 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, c5 > 2.0, c1 > 10.5, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 13, c3 == 1, 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" 
+rule "#6492 poker_hand = 3 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)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6493 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6496 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 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" 
+rule "#6498 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, c4 <= 8.0, c1 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6499 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6500 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6509 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 3, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6511 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 3, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6514 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 12, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6516 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#6519 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 10, 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" 
+rule "#6520 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)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 9, 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" 
+rule "#6524 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, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6526 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6527 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 2, 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" 
+rule "#6529 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 == 4, c5 > 1.0, c2 > 5.0, c1 > 6.0, c3 <= 7.0, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 1, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6539 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 11, c2 == 1, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6541 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 10, c3 == 13, s1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#6544 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 10, c3 == 13, s1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#6549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 10, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6551 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 10, c3 == 6, 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" 
+rule "#6557 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, c3 <= 7.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 9, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 9, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6564 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 9, c2 == 6, 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" 
+rule "#6565 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 9, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6568 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 9, c2 == 2, 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" 
+rule "#6570 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 8, c3 == 13, 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" 
+rule "#6573 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)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 8, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6574 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 8, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6577 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 8, c3 == 6, 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" 
+rule "#6578 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)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6579 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 8, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6580 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6583 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 7, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6584 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 7, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6587 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 7, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6588 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 7, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6589 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 7, c2 == 7, 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" 
+rule "#6598 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)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 7, c2 == 5, c3 == 6, 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" 
+rule "#6603 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 7, c2 == 5, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 7, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6608 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 6, c2 == 13, 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" 
+rule "#6609 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 6, c2 == 12, 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" 
+rule "#6610 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 6, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6616 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 6, c2 == 5, 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" 
+rule "#6621 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 5, c2 == 13, 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" 
+rule "#6627 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 5, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6635 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 5, c2 == 6, c3 == 6, 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" 
+rule "#6641 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 5, c2 == 5, 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" 
+rule "#6643 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)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 5, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6644 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 5, c2 == 2, 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(c4 == 12, c5 == 1, c1 == 4, c3 == 13, 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(c4 == 12, c5 == 1, c1 == 4, c3 == 12, 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" 
+rule "#6649 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, c5 > 11.0, c1 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 4, c3 == 10, 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" 
+rule "#6650 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, c1 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 4, c3 == 9, 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" 
+rule "#6651 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, c1 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 4, c3 == 8, 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" 
+rule "#6655 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 4, c3 == 7, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6661 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 4, c3 == 7, c2 == 4, 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" 
+rule "#6663 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, c3 <= 3.0, c2 > 1.5, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 4, c3 == 7, c2 == 2, 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" 
+rule "#6668 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, c3 <= 3.0, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 4, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6669 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 4, c3 == 2, 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" 
+rule "#6670 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6676 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 3, c2 == 8, 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" 
+rule "#6682 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6683 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 3, c2 == 1, 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(c4 == 12, c5 == 1, c1 == 2, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6686 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 11, 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" 
+rule "#6687 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6689 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6692 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 7, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 7, c2 == 7, 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" 
+rule "#6705 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 <= 12, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 4, 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" 
+rule "#6707 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 2, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6709 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6710 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6718 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6719 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6722 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 2, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6729 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 2, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6731 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 12, c5 == 1, c1 == 1, c2 == 2, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6736 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6737 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6740 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6741 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6743 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6747 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 12, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6749 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 12, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6751 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 12, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#6754 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 12, c2 == 6, 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" 
+rule "#6755 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 12, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6756 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 12, c2 == 4, 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" 
+rule "#6757 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)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 12, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6759 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 12, c2 == 1, 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(c4 == 11, c5 == 13, c1 == 11, c2 == 10, 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" 
+rule "#6764 poker_hand = 2 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 11, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6766 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 11, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6767 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 11, c2 == 6, 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" 
+rule "#6773 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)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6775 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6779 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 9, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6788 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 9, c3 == 2, 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" 
+rule "#6792 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 == 4, c1 > 1.0, c4 <= 13, c2 > 1.0, c5 <= 11.0, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 7, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6793 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 7, c3 == 11, 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" 
+rule "#6801 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 == 4, c1 > 1.0, c4 <= 13, c2 > 1.0, c5 > 11.0, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 7, c3 == 3, 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" 
+rule "#6804 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 == 4, c1 > 1.0, c4 <= 13, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 6, 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" 
+rule "#6805 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 == 4, c1 <= 1.0, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 5, 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" 
+rule "#6806 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 4, 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" 
+rule "#6812 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)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6817 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 3, c3 == 3, 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" 
+rule "#6820 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, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6821 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 10, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6823 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6826 poker_hand = 8 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 10, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+end
+
+rule "#6833 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 10, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6835 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 10, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6836 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 10, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6838 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 9, 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" 
+rule "#6840 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 7, 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" 
+rule "#6846 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 > 2.5, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 9, c3 == 1, 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" 
+rule "#6848 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 12, 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" 
+rule "#6853 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6854 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 6, c3 == 13, 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" 
+rule "#6858 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, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 6, c3 == 9, 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" 
+rule "#6870 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, c2 > 2.0, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 8, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 12, 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" 
+rule "#6874 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, c5 > 1.0, c2 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6876 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 9, 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" 
+rule "#6877 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, c5 > 1.0, c2 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 8, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6890 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6891 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6893 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 4, 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" 
+rule "#6894 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)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6895 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 7, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6897 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 6, c2 == 13, 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" 
+rule "#6898 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 6, c2 == 12, 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" 
+rule "#6899 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 6, c2 == 11, 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" 
+rule "#6901 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 6, c2 == 9, 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" 
+rule "#6903 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, c4 > 8.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 6, c2 == 7, 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" 
+rule "#6906 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, c4 > 8.0, c2 > 6.5, c5 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 6, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6911 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 6, c2 == 3, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 6, c2 == 1, 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" 
+rule "#6923 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 > 6.5, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 13, c3 == 12, 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" 
+rule "#6929 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, c5 <= 9.5, c2 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 13, c3 == 6, 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" 
+rule "#6930 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, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 13, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6932 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 13, c3 == 3, 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" 
+rule "#6935 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 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 11, 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" 
+rule "#6940 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 7, 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" 
+rule "#6941 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)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 3, 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" 
+rule "#6946 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 <= 7.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 5, c2 == 1, 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" 
+rule "#6948 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 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 4, c3 == 12, 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" 
+rule "#6949 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6950 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 4, c3 == 10, 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" 
+rule "#6951 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 4, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6954 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 4, c3 == 6, 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" 
+rule "#6956 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 == 1, c4 > 13, c1 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 4, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6957 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 4, c3 == 3, 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" 
+rule "#6961 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, c2 <= 12.0, c1 > 2.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 3, c2 == 12, 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" 
+rule "#6962 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 3, c2 == 11, 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" 
+rule "#6965 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, c2 > 12.0, c1 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 3, c2 == 8, 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" 
+rule "#6971 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 == 4, c5 <= 10.5, c2 <= 11.5, c1 <= 10.0, c3 > 5.5, c4 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6973 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 2, c3 == 13, 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" 
+rule "#6978 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 == 4, c5 <= 10.5, c2 <= 11.5, c1 > 10.0, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 2, c3 == 8, 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" 
+rule "#6979 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 == 4, c5 > 10.5, c1 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 2, c3 == 7, 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" 
+rule "#6981 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 > 2.0, c4 <= 2.5, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 2, c3 == 5, 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" 
+rule "#6983 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 > 2.0, c4 <= 2.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 2, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6984 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 2, c3 == 2, 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" 
+rule "#6987 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 1, c2 == 12, 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" 
+rule "#6989 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, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 1, c2 == 10, 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(c4 == 11, c5 == 13, c1 == 1, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6995 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 13, c1 == 1, c2 == 4, 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(c4 == 11, c5 == 13, c1 == 1, c2 == 1, 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" 
+rule "#7000 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 13, c2 == 12, 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(c4 == 11, c5 == 12, c3 == 13, c2 == 9, 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" 
+rule "#7005 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, c5 <= 10.5, c1 <= 6.5, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 13, c2 == 7, 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" 
+rule "#7008 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 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 13, c2 == 4, 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" 
+rule "#7012 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, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 13, 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" 
+rule "#7013 poker_hand = 3 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, c1 > 1.5, c5 > 9.0, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7017 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 10, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 10, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7028 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7033 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 5, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7035 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7047 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 3, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7056 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 3, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7059 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7065 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 10, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7066 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 10, c1 == 9, 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" 
+rule "#7068 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, c1 > 1.5, c5 > 9.0, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 10, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7070 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7071 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7072 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 10, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7075 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7080 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 12, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7083 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 12, c2 == 6, 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" 
+rule "#7090 poker_hand = 4 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, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7094 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 10, c2 == 9, 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" 
+rule "#7103 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7106 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 6, 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(c4 == 11, c5 == 12, c3 == 9, c1 == 3, 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" 
+rule "#7111 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, c5 > 6.5, c4 > 5.0, c2 <= 7.5, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 9, c1 == 1, 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" 
+rule "#7112 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, c5 > 6.5, c4 > 5.0, c2 <= 7.5, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 13, 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" 
+rule "#7114 poker_hand = 3 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7116 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 12, c1 == 10, 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" 
+rule "#7125 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7126 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7130 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 7, 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" 
+rule "#7131 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 == 1, c2 > 4.0, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 6, 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" 
+rule "#7132 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 == 1, c2 > 4.0, c4 > 3.0, c5 > 1.5, c1 <= 4.0, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 5, 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" 
+rule "#7136 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 == 1, c2 > 4.0, c4 > 3.0, c5 > 1.5, c1 > 4.0, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 8, c2 == 1, 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" 
+rule "#7139 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7140 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 10, 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" 
+rule "#7141 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 9, c2 == 13, 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(c4 == 11, c5 == 12, c3 == 7, c1 == 9, c2 == 7, 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" 
+rule "#7156 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, c4 <= 8.5, c1 > 5.0, c2 > 3.5, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 6, 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" 
+rule "#7157 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7158 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7160 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 3, c2 == 12, 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" 
+rule "#7163 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7169 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 3, c2 == 3, 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" 
+rule "#7172 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7173 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7176 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 11, 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(c4 == 11, c5 == 12, c3 == 6, c1 == 10, c2 == 10, 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" 
+rule "#7189 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 10, c2 == 1, 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" 
+rule "#7191 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 8, 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" 
+rule "#7195 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, c2 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7196 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7199 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 2, c2 == 11, 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" 
+rule "#7209 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, c3 <= 5.0, c2 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 6, c1 == 2, c2 == 1, 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" 
+rule "#7211 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 5, c1 == 13, 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" 
+rule "#7213 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7221 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 5, c1 == 8, c2 == 8, 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(c4 == 11, c5 == 12, c3 == 5, c1 == 8, c2 == 4, 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" 
+rule "#7231 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, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7233 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 5, c1 == 3, 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" 
+rule "#7236 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 4, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7240 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 4, c1 == 9, 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" 
+rule "#7241 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 <= 7.0, c5 <= 8.0, c2 > 9.0, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 4, c1 == 8, 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" 
+rule "#7242 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 == 2, c4 <= 13, c1 > 2.0, c5 > 1.0, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 4, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 3, c2 == 12, 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" 
+rule "#7251 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 <= 11.0, c2 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 3, c2 == 11, 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" 
+rule "#7252 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 > 11.0, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 3, c2 == 10, 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" 
+rule "#7254 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 > 11.0, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 3, c2 == 8, 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(c4 == 11, c5 == 12, c3 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7260 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 3, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7261 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 3, c2 == 1, 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" 
+rule "#7267 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 2, c1 == 8, 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" 
+rule "#7270 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 > 6.0, c2 <= 5.5, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 2, c1 == 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" 
+rule "#7271 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 2, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7272 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7277 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 13, c2 == 11, 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" 
+rule "#7278 poker_hand = 4 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 13, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7288 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 12, 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" 
+rule "#7296 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 <= 5.0, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 11, c2 == 6, 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" 
+rule "#7298 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 > 5.0, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 11, c2 == 4, 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" 
+rule "#7301 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 > 4.0, c2 > 5.0, c3 <= 11.5, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7304 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 8, 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" 
+rule "#7305 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)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 7, 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(c4 == 11, c5 == 12, c3 == 1, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7307 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7309 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 3, 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" 
+rule "#7310 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, c5 <= 5.5, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 12, c3 == 1, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7312 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 13, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7313 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 13, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7326 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7327 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 12, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 12, c1 == 1, 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" 
+rule "#7338 poker_hand = 3 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7342 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 11, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7344 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 11, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7346 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 11, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#7347 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 11, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7349 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 11, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#7350 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 11, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7351 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 10, c2 == 13, 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" 
+rule "#7354 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, c2 <= 5.5, c3 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7362 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 10, c2 == 2, 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" 
+rule "#7368 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 == 3, c2 > 11.0, c3 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7373 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7376 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7378 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 8, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7380 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 8, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7384 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 8, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7387 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 8, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7391 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 6, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7394 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7395 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 6, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7402 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 6, c2 == 3, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7411 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 6, c2 == 3, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7414 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 6, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7417 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7418 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7419 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7420 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7425 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7426 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 5, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7429 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 4, c2 == 13, 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(c4 == 11, c5 == 11, c3 == 4, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7434 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7441 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 4, c2 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7445 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 4, c2 == 7, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7449 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 4, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7450 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 4, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7452 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 4, c2 == 2, 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(c4 == 11, c5 == 11, c3 == 2, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7459 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 2, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7465 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7467 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 2, c1 == 1, 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(c4 == 11, c5 == 11, c3 == 1, c2 == 7, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7480 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 1, c2 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7489 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7490 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7491 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 11, c3 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7493 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7496 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 12, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7498 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 12, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7501 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 12, c3 == 6, 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" 
+rule "#7507 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 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 11, 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" 
+rule "#7509 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7512 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7514 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 4, 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" 
+rule "#7515 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, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 3, 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" 
+rule "#7518 poker_hand = 9 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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 1, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#7522 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 13, c1 == 1, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7532 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 11, 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" 
+rule "#7534 poker_hand = 4 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, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7535 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 8, 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" 
+rule "#7538 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 > 8.0, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 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" 
+rule "#7545 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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7550 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 3, c3 == 3, 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" 
+rule "#7553 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 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 2, 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" 
+rule "#7554 poker_hand = 4 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7555 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7563 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7564 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 11, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7568 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 10, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 10, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7570 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 10, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7574 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 10, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7575 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7579 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 10, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7586 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 8, 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" 
+rule "#7588 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, c2 <= 11, c3 > 7.5, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 6, 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" 
+rule "#7596 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, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 5, c1 == 6, 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" 
+rule "#7597 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, c2 <= 11, c3 <= 7.5, c4 > 1.5, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7600 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 5, c1 == 2, 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" 
+rule "#7604 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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 4, c1 == 11, 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" 
+rule "#7606 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 4, c1 == 9, 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" 
+rule "#7613 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, c5 > 1.0, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 4, c1 == 2, 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" 
+rule "#7615 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 3, 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" 
+rule "#7616 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, c1 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 9, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7618 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 8, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7619 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 8, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7624 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 8, c1 == 7, 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" 
+rule "#7625 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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7629 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 8, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7631 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7632 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7634 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 10, 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" 
+rule "#7635 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 9, 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" 
+rule "#7636 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, c3 <= 8.0, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 8, 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" 
+rule "#7639 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, c3 > 8.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 5, 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" 
+rule "#7640 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, c3 > 8.0, c5 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7641 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7642 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 7, c3 == 2, c1 == 13, 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(c4 == 11, c5 == 10, c2 == 7, c3 == 2, c1 == 7, 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" 
+rule "#7661 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 > 2.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 6, c3 == 8, 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" 
+rule "#7663 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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 6, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7665 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 6, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7666 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7668 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 6, c3 == 1, 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" 
+rule "#7669 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 <= 7.5, c2 <= 11.5, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 5, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7672 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 5, c3 == 10, 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" 
+rule "#7673 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 > 7.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 5, c3 == 9, 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" 
+rule "#7674 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, c5 > 1.5, c1 > 2.0, c2 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 5, c3 == 8, 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" 
+rule "#7675 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, c5 > 1.5, c1 <= 2.0, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 5, c3 == 7, 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" 
+rule "#7681 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, c4 <= 4.5, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 5, c3 == 1, 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" 
+rule "#7682 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7684 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7695 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 12, c1 == 1, 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" 
+rule "#7698 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 > 12.5, c4 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7699 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 8, 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" 
+rule "#7700 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 7, 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" 
+rule "#7701 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, c5 > 6.0, c1 <= 7.5, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 6, 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" 
+rule "#7705 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, c5 > 6.0, c1 <= 7.5, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 3, c1 == 12, 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" 
+rule "#7707 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 > 1.0, c5 <= 4.0, c3 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 3, c1 == 10, 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" 
+rule "#7714 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 > 1.0, c5 > 4.0, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 3, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 1, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7725 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 4, c3 == 1, c1 == 6, 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" 
+rule "#7736 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 10, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7739 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 10, c1 == 8, 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" 
+rule "#7748 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, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 8, 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" 
+rule "#7750 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 > 1.0, c3 > 2.5, c5 > 10.5, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 6, 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" 
+rule "#7754 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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7757 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 4, c1 == 8, 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" 
+rule "#7762 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 4, c1 == 3, 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" 
+rule "#7765 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 3, 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" 
+rule "#7767 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, c1 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 3, c3 == 1, 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" 
+rule "#7770 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, c1 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 2, c1 == 12, c3 == 12, 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" 
+rule "#7774 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 2, c1 == 12, c3 == 8, 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" 
+rule "#7782 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 > 5.0, c3 <= 8.0, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 2, c1 == 11, 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" 
+rule "#7784 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)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 2, c1 == 9, 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(c4 == 11, c5 == 10, c2 == 2, c1 == 8, 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" 
+rule "#7791 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 2, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7792 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 2, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7794 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 1, c1 == 13, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 1, c1 == 13, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 1, c1 == 7, 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" 
+rule "#7815 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 > 2.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 1, c1 == 3, 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" 
+rule "#7816 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 10, c2 == 1, c1 == 2, 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" 
+rule "#7819 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 == 3, c5 > 3.5, c3 > 11.5, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7824 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 11, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7831 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 11, c1 == 2, 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" 
+rule "#7837 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 == 3, c5 > 3.5, c3 <= 11.5, c4 <= 10.0, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 6, 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" 
+rule "#7838 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 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" 
+rule "#7839 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, c1 <= 2.5, c3 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 4, 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" 
+rule "#7840 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, c1 <= 2.5, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 13, c3 == 3, 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" 
+rule "#7843 poker_hand = 4 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 12, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7844 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 12, c1 == 12, 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" 
+rule "#7845 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 12, c1 == 11, 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" 
+rule "#7851 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)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 12, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7854 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7857 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 11, c1 == 12, 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" 
+rule "#7858 poker_hand = 3 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7859 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 11, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 11, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7863 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7866 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 11, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7870 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 13, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7872 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7887 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 8, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7891 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 8, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7902 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7903 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7911 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 7, c1 == 1, 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" 
+rule "#7916 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)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7918 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 5, c1 == 8, 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" 
+rule "#7920 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 > 5.0, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 5, c1 == 6, 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" 
+rule "#7926 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 <= 3.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 4, 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" 
+rule "#7927 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)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 10, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7930 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 13, 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" 
+rule "#7931 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 > 6.0, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8948 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#7933 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, c2 > 2.0, c3 > 2.0, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 10, 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" 
+rule "#7935 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, c2 > 2.0, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 8, 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" 
+rule "#7937 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 == 4, c1 <= 10.0, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#8960 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#7940 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 3, 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" 
+rule "#7941 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8970 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#7942 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)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 9, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7943 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 13, 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" 
+rule "#7944 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 <= 4.0, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 12, 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" 
+rule "#7949 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 > 4.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 10, c3 == 10, 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" 
+rule "#7953 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 <= 12.5, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 10, c3 == 6, 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" 
+rule "#7969 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 6, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7972 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 6, c3 == 3, 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" 
+rule "#7975 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 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" 
+rule "#7976 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8997 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#7977 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, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 3, 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" 
+rule "#7979 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)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 8, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7981 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7983 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7986 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 7, c1 == 7, 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" 
+rule "#7987 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 7, c1 == 6, 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" 
+rule "#7990 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 > 4.5, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 7, c1 == 3, 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" 
+rule "#7994 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, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 6, c1 == 12, 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" 
+rule "#7997 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, c2 > 6.0, c3 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 6, c1 == 9, 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" 
+rule "#7998 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 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 6, c1 == 8, 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" 
+rule "#7999 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 6, c1 == 7, 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" 
+rule "#8002 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 > 1.0, c1 > 5.0, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 6, c1 == 4, 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" 
+rule "#8003 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 6, c1 == 3, 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" 
+rule "#8005 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)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9040 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8009 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 5, c1 == 10, 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" 
+rule "#8012 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 5, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8013 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 5, c1 == 6, 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" 
+rule "#8014 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 == 4, c3 <= 11.5, c1 > 3.0, c2 > 2.5, c4 > 10.0, c5 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 5, c1 == 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" 
+rule "#8017 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 == 3, c2 <= 13, c3 <= 10.0, c4 > 1.0, c1 <= 5.0, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 5, c1 == 2, 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(c4 == 11, c5 == 9, c2 == 4, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8020 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 12, 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(c4 == 11, c5 == 9, c2 == 4, c1 == 11, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8033 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 11, c3 == 1, 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" 
+rule "#8034 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 == 3, c2 <= 13, c3 <= 10.0, c4 > 1.0, c1 <= 5.0, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 8, 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" 
+rule "#8038 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 == 3, c2 <= 13, c3 <= 10.0, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 6, 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" 
+rule "#8040 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 == 3, c2 <= 13, c3 > 10.0, c1 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 4, 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" 
+rule "#8041 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, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8042 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 2, 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" 
+rule "#8051 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, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 1, c3 == 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" 
+rule "#8052 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)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 4, c1 == 1, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8058 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 3, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8065 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 3, c3 == 4, 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" 
+rule "#8066 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 > 12.0, c3 > 7.5, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 3, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8067 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 3, c3 == 2, 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" 
+rule "#8069 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 3, c3 == 1, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 3, c3 == 1, c1 == 3, 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" 
+rule "#8084 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, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 10, 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" 
+rule "#8087 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 <= 5.5, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 8, c3 == 12, 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" 
+rule "#8088 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 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 8, c3 == 11, 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" 
+rule "#8093 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 > 5.5, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 8, c3 == 6, 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" 
+rule "#8099 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, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 7, 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" 
+rule "#8101 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, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8102 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 4, 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" 
+rule "#8103 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)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 2, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8107 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 1, c1 == 12, 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" 
+rule "#8109 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 > 9.5, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 1, c1 == 10, 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" 
+rule "#8110 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 == 1, c1 > 2.0, c3 > 2.5, c5 > 3.0, c2 > 9.5, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8111 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 1, c1 == 8, 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" 
+rule "#8112 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 > 1.0, c2 > 2.0, c3 <= 7.0, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 1, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8115 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 9, c2 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8123 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 13, s4 == 4, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8125 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 13, s4 == 4, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8127 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 13, s4 == 4, c2 == 5, 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(c4 == 11, c5 == 8, c1 == 13, s4 == 4, c2 == 3, 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" 
+rule "#8134 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 13, s4 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8135 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 12, c2 == 13, 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" 
+rule "#8138 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 == 3, c2 <= 13, c5 > 1.0, c3 > 5.5, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 12, c2 == 10, 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" 
+rule "#8141 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)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 12, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8142 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 12, c2 == 6, 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(c4 == 11, c5 == 8, c1 == 12, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 11, c3 == 12, 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(c4 == 11, c5 == 8, c1 == 11, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8152 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 11, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8153 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 11, c3 == 8, 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" 
+rule "#8155 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 11, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8158 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 11, c3 == 3, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8159 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 11, c3 == 3, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8168 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 11, c3 == 3, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8171 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 11, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 10, c3 == 12, 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" 
+rule "#8175 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 10, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8179 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 10, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#8181 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 10, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 10, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8183 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 10, c3 == 3, 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(c4 == 11, c5 == 8, c1 == 10, c3 == 1, 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" 
+rule "#8186 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, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 9, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8188 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 9, c2 == 11, 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" 
+rule "#8189 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, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8190 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 9, c2 == 9, 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" 
+rule "#8191 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 == 2, c1 <= 7.0, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 9, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8192 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 9, c2 == 7, 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(c4 == 11, c5 == 8, c1 == 9, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8198 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 9, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8203 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 8, s5 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8205 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 8, s5 == 2, c2 == 9, 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" 
+rule "#8215 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 7, c2 == 13, 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" 
+rule "#8216 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 7, c2 == 12, 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" 
+rule "#8221 poker_hand = 3 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 7, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8222 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 7, c2 == 6, 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" 
+rule "#8224 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)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 7, c2 == 4, 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" 
+rule "#8226 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)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 7, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8230 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 11, 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" 
+rule "#8232 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 10, c2 == 12, 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" 
+rule "#8233 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 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 10, c2 == 11, 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" 
+rule "#8237 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, c3 <= 10.0, c2 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 10, c2 == 7, 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" 
+rule "#8247 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 6, 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" 
+rule "#8251 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 6, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8258 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 8, c3 == 13, 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" 
+rule "#8260 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 == 2, c3 > 1.0, c1 > 1.0, c2 > 4.5, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 8, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8262 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 8, c3 == 9, 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" 
+rule "#8274 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 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 4, 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" 
+rule "#8280 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 <= 12.5, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8284 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 5, c2 == 3, c3 == 4, 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" 
+rule "#8291 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 <= 12.5, c4 > 1.5, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 4, c2 == 12, 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" 
+rule "#8293 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 4, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8298 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 4, c2 == 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" 
+rule "#8301 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 <= 8, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 4, c2 == 3, c3 == 12, 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" 
+rule "#8302 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 4, c2 == 3, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8313 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 4, c2 == 2, 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" 
+rule "#8320 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 > 2.5, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 3, c2 == 8, 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" 
+rule "#8321 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 3, c2 == 7, 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" 
+rule "#8323 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8325 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 3, c2 == 3, 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" 
+rule "#8328 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 3, c2 == 2, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8334 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 3, c2 == 2, c3 == 5, 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" 
+rule "#8339 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, c5 <= 9.0, c3 <= 8.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 3, c2 == 1, 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" 
+rule "#8348 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, c5 <= 9.0, c3 > 8.0, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 2, c2 == 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" 
+rule "#8355 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, c5 > 9.0, c3 > 6.0, c4 <= 3, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 1, c2 == 11, 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" 
+rule "#8356 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 1, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8358 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8359 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 1, c2 == 7, 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" 
+rule "#8360 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, c4 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 1, c2 == 6, 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" 
+rule "#8363 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)
+		 examples.Poker(c4 == 11, c5 == 8, c1 == 1, c2 == 3, 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" 
+rule "#8366 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8368 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8370 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 9, 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" 
+rule "#8378 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, c5 <= 13, c1 > 2.5, c2 <= 11.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 6, c2 == 8, 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" 
+rule "#8380 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 6, c2 == 6, 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(c4 == 11, c5 == 7, c1 == 13, c3 == 4, 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" 
+rule "#8388 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 3, 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" 
+rule "#8390 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, c4 > 2.0, c3 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 2, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9350 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8393 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, c4 > 2.0, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 2, c2 == 9, 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" 
+rule "#8400 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, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 2, c2 == 2, 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" 
+rule "#8402 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)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 13, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8409 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 12, c2 == 13, c3 == 7, 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" 
+rule "#8419 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 12, c2 == 9, 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" 
+rule "#8424 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, c2 > 7.5, c1 > 5.0, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 12, c2 == 4, 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" 
+rule "#8425 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 12, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9376 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8426 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 12, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9378 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8429 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)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8431 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 11, 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" 
+rule "#8432 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, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 10, 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" 
+rule "#8433 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8437 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 7, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8442 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 7, c2 == 6, 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" 
+rule "#8450 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 6, c2 == 11, 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" 
+rule "#8456 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 6, c2 == 5, 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" 
+rule "#8461 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, c5 > 1.5, c2 > 11.0, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9407 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8471 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, c2 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8473 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 3, c2 == 3, 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" 
+rule "#8476 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 10, c3 == 2, 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" 
+rule "#8486 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, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8492 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 7, c3 == 5, 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" 
+rule "#8501 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)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 5, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8504 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 5, c3 == 7, 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" 
+rule "#8513 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, c5 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 4, c3 == 11, 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" 
+rule "#8521 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 4, c3 == 3, 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" 
+rule "#8525 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8534 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 9, c2 == 3, c3 == 3, 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" 
+rule "#8541 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 8, s2 == 2, 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" 
+rule "#8545 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 <= 11.5, c1 > 2.0, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#9462 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8547 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, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 7, c3 == 9, 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" 
+rule "#8552 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, c1 > 1.5, c2 > 2.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 7, c3 == 4, 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" 
+rule "#8553 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, c1 > 1.5, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 7, c3 == 3, 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" 
+rule "#8554 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 7, c3 == 2, 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" 
+rule "#8559 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, c1 > 2.0, c2 <= 8.0, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 6, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 6, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 6, c2 == 7, 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" 
+rule "#8569 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, c1 <= 10.5, c2 <= 5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8572 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8573 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8576 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8577 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 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" 
+rule "#8578 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 4, 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" 
+rule "#8583 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 <= 9.5, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 2, c2 == 10, 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" 
+rule "#8591 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, c5 > 7.5, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 2, c2 == 2, 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" 
+rule "#8593 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 <= 5.5, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 5, c3 == 1, 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" 
+rule "#8597 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 10, 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" 
+rule "#8600 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 8, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 8, c3 == 8, 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" 
+rule "#8615 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)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 4, 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" 
+rule "#8617 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 4, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 3, c2 == 7, 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" 
+rule "#8631 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 3, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8634 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 2, c2 == 11, 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" 
+rule "#8636 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 2, c2 == 9, 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" 
+rule "#8638 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 2, c2 == 7, 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" 
+rule "#8641 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)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 2, c2 == 6, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8644 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 2, c2 == 6, c3 == 8, 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" 
+rule "#8652 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, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 2, c2 == 5, 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" 
+rule "#8653 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 2, c2 == 4, 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" 
+rule "#8655 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 == 1, c5 <= 9.5, c4 <= 10.0, c1 > 6.0, c2 > 4.5, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 2, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8662 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 1, c3 == 8, 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" 
+rule "#8668 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)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 1, c3 == 7, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8675 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 1, c3 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 1, c3 == 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" 
+rule "#8679 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 1, c3 == 3, 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" 
+rule "#8681 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 7, c1 == 1, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 13, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8683 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 13, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8688 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 13, c2 == 7, 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" 
+rule "#8698 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8700 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 8, 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" 
+rule "#8701 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8703 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8705 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 4, c3 == 12, 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" 
+rule "#8712 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 <= 2.0, c2 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 4, c3 == 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" 
+rule "#8717 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 12, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8720 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 13, 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" 
+rule "#8721 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 12, 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" 
+rule "#8725 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 8, 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" 
+rule "#8726 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 7, 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" 
+rule "#8729 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9609 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8730 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 3, 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" 
+rule "#8731 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 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 11, c3 == 2, 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" 
+rule "#8733 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 10, c3 == 13, 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" 
+rule "#8734 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 == 4, c3 > 2.0, c1 <= 9.0, c2 > 3.5, c5 > 5.5, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 10, c3 == 12, 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" 
+rule "#8735 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 10, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9627 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8736 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, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 10, c3 == 10, 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" 
+rule "#8737 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 == 4, c3 <= 2.0, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 10, c3 == 9, 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" 
+rule "#8742 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 10, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9638 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8746 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, c5 <= 8.5, c3 > 3.5, c4 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 9, c2 == 13, 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" 
+rule "#8747 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, c5 <= 8.5, c3 > 3.5, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9640 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8749 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 9, c2 == 10, 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" 
+rule "#8752 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, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 9, c2 == 7, 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" 
+rule "#8754 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, c2 > 2.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 9, c2 == 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" 
+rule "#8757 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 9, c2 == 2, 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" 
+rule "#8758 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, c1 > 4.0, c3 > 3.5, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 9, c2 == 1, 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" 
+rule "#8760 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 == 4, c3 <= 4.5, c5 > 1.5, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 8, c2 == 12, 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(c4 == 11, c5 == 6, c1 == 8, c2 == 11, 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" 
+rule "#8762 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 == 4, c3 <= 4.5, c5 > 1.5, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 8, c2 == 10, 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" 
+rule "#8763 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 == 4, c3 > 4.5, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 8, c2 == 9, 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" 
+rule "#8765 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 == 4, c3 > 4.5, c1 > 1.5, c5 <= 13, c2 > 6.5, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 8, c2 == 7, 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" 
+rule "#8766 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 8, c2 == 6, 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" 
+rule "#8769 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 8, c2 == 3, 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" 
+rule "#8771 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 8, c2 == 1, 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" 
+rule "#8772 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, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 7, c2 == 13, 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" 
+rule "#8776 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 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 7, c2 == 9, 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" 
+rule "#8777 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, c1 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 7, c2 == 8, 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" 
+rule "#8778 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 == 3, c4 > 2.0, c5 <= 2.5, c3 > 2.5, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 7, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#9705 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8781 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 7, c2 == 4, 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" 
+rule "#8783 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 == 2, c1 <= 10.0, c3 > 2.5, c2 <= 2.5, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 7, c2 == 2, 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" 
+rule "#8784 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 7, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9726 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8787 poker_hand = 6 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 6, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#8788 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8789 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 6, c3 == 9, 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" 
+rule "#8793 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 6, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8799 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 12, 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" 
+rule "#8800 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, c1 > 2.0, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 11, 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" 
+rule "#8802 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, c1 > 2.0, c4 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 9, 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" 
+rule "#8805 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, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8813 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 4, c2 == 7, 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" 
+rule "#8814 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 4, c2 == 6, 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" 
+rule "#8822 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 5, c3 == 1, 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" 
+rule "#8823 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 > 1.5, c3 > 1.0, c4 <= 4.0, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 4, c2 == 13, 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" 
+rule "#8832 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 4, c2 == 4, 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(c4 == 11, c5 == 6, c1 == 4, c2 == 3, 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" 
+rule "#8834 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 4, c2 == 2, 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" 
+rule "#8838 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 11, 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" 
+rule "#8839 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 <= 12.5, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8841 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 8, 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" 
+rule "#8842 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, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 5, c3 == 11, 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" 
+rule "#8847 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 5, c3 == 10, 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" 
+rule "#8851 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 5, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8858 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 2, 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" 
+rule "#8860 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 <= 13, c4 > 4.5, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 3, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9784 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8861 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 2, c3 == 13, 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" 
+rule "#8867 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 2, c3 == 12, c2 == 8, 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" 
+rule "#8869 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 2, c3 == 12, c2 == 6, 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" 
+rule "#8877 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 2, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8879 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 2, c3 == 7, 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" 
+rule "#8881 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, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 2, c3 == 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" 
+rule "#8882 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8884 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 2, c3 == 2, 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" 
+rule "#8885 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 2, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8888 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 1, c3 == 11, 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" 
+rule "#8889 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, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 1, c3 == 10, 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" 
+rule "#8890 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 1, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8892 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 1, c3 == 7, 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" 
+rule "#8893 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)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 1, c3 == 6, 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" 
+rule "#8896 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, c3 <= 3.5, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 1, c3 == 3, 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" 
+rule "#8897 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, c3 > 3.5, c1 <= 8.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 6, c1 == 1, c3 == 2, 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" 
+rule "#8899 poker_hand = 3 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#9836 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8909 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)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8912 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 12, 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" 
+rule "#8914 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 10, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8921 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 10, c1 == 6, 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" 
+rule "#8927 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, c3 <= 5.5, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 9, 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" 
+rule "#8930 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 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 6, 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" 
+rule "#8932 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 > 1.5, c4 > 9.5, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 4, 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" 
+rule "#8933 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 == 3, c5 > 2.0, c2 <= 13, c4 <= 3.0, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 3, s1 == 4, 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" 
+rule "#8934 poker_hand = 5 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)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 3, s1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#8936 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 13, c2 == 3, s1 == 1, 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" 
+rule "#8942 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 == 2, c4 <= 13, c5 <= 10.5, c2 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 12, c1 == 12, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8952 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 12, c1 == 12, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8957 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 12, c1 == 9, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8962 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 12, c1 == 9, c2 == 6, 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" 
+rule "#8969 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 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 12, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8970 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 12, c1 == 6, 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" 
+rule "#8975 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 <= 8.0, c2 <= 7, c3 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 12, c1 == 1, 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" 
+rule "#8976 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 > 8.0, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 11, c1 == 13, 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" 
+rule "#8978 poker_hand = 7 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 <= 4.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (7)");
+end
+
+rule "#8980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 11, c1 == 9, 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" 
+rule "#8984 poker_hand = 6 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 > 4.0, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
 end
 
-rule "#9890 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#8985 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, c3 <= 5.5, c1 <= 13, c2 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 11, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8994 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 13, c2 == 8, 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" 
+rule "#8997 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, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 13, c2 == 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" 
+rule "#9005 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9006 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9007 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 7, 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" 
+rule "#9011 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, c3 > 6.0, c1 <= 8.0, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 10, c1 == 3, 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" 
+rule "#9014 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 == 3, c2 > 2.5, c4 <= 10.0, c1 > 1.5, c3 <= 11.0, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 9, c1 == 13, 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" 
+rule "#9015 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, c4 <= 10.0, c1 > 1.5, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 9, c1 == 12, c2 == 13, 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" 
+rule "#9017 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 == 3, c2 > 2.5, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 9, c1 == 12, c2 == 11, 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" 
+rule "#9030 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 9, c1 == 9, 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" 
+rule "#9031 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 9, c1 == 8, 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" 
+rule "#9032 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 9, c1 == 7, 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" 
+rule "#9036 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 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 9, c1 == 3, 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" 
+rule "#9038 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)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 9, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9925 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#9040 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)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 12, 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" 
+rule "#9041 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 11, 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" 
+rule "#9043 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9938 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#9045 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 > 8.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9047 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 5, 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" 
+rule "#9048 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 > 8.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 4, c1 == 13, 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" 
+rule "#9056 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)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 4, c1 == 5, 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" 
+rule "#9058 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)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9062 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9063 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9065 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 7, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9068 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 7, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9069 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 7, c2 == 8, 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" 
+rule "#9076 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 7, c2 == 1, 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" 
+rule "#9077 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, c3 > 1.5, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9080 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9081 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9084 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 6, c2 == 13, 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" 
+rule "#9091 poker_hand = 3 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, c3 > 2.0, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9097 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 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" 
+rule "#9098 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, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 4, 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" 
+rule "#9111 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 > 3.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 2, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9112 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 6, c1 == 2, c2 == 1, 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" 
+rule "#9114 poker_hand = 2 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 > 3.0, c2 > 3.0, c4 <= 9.0, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 5, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9116 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 5, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9119 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 5, c2 == 8, 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" 
+rule "#9123 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)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 5, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9986 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#9124 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 5, c2 == 3, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9126 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 5, c2 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9144 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 4, c1 == 8, 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" 
+rule "#9147 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 4, c1 == 5, 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" 
+rule "#9150 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, c1 > 3.5, c3 <= 2.0, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 4, c1 == 3, c2 == 12, 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" 
+rule "#9159 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, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 4, c1 == 3, c2 == 3, 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" 
+rule "#9166 poker_hand = 2 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 3, c2 == 5, 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" 
+rule "#9176 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, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 3, c2 == 1, 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" 
+rule "#9179 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 == 4, c4 <= 11.0, c1 <= 12.5, c2 <= 9.5, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 2, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9180 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 2, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9181 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 2, c1 == 9, 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" 
+rule "#9182 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 > 1.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 2, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 2, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9185 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 2, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9186 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 2, c1 == 4, 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" 
+rule "#9190 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, c5 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 13, 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" 
+rule "#9191 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 12, 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" 
+rule "#9192 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 11, 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" 
+rule "#9194 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 == 3, c2 > 1.0, c1 <= 13, c3 <= 9.0, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9199 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 6, c2 == 11, 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" 
+rule "#9208 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, c5 <= 10.0, c2 <= 8.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 6, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9211 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 4, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9214 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 4, c2 == 10, 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(c4 == 11, c5 == 5, c3 == 1, c1 == 4, c2 == 1, 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" 
+rule "#9225 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, c5 > 10.0, c2 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 5, c3 == 1, c1 == 2, 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" 
+rule "#9227 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9228 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 13, c3 == 12, 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" 
+rule "#9241 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 12, c2 == 12, 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" 
+rule "#9242 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 > 4.0, c2 <= 8.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 12, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 12, c2 == 7, 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" 
+rule "#9248 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, c1 <= 10.0, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 12, c2 == 5, 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" 
+rule "#9249 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 > 2.5, c5 <= 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 12, c2 == 4, 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" 
+rule "#9253 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 12, c2 == 2, c3 == 11, 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(c4 == 11, c5 == 4, c1 == 12, c2 == 2, c3 == 4, 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(c4 == 11, c5 == 4, c1 == 12, c2 == 2, c3 == 3, 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" 
+rule "#9265 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, c1 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 11, s4 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9269 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 10, c2 == 13, 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" 
+rule "#9271 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, c2 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 10, c2 == 11, 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" 
+rule "#9274 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 <= 10.0, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 10, c2 == 8, 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" 
+rule "#9280 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 > 10.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 10, c2 == 2, 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" 
+rule "#9284 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 11, 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" 
+rule "#9285 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9287 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 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" 
+rule "#9291 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 4, 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" 
+rule "#9294 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 > 1.0, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 3, c3 == 11, 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" 
+rule "#9300 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, c3 <= 12.0, c2 > 1.0, c4 <= 13, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 3, c3 == 5, 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" 
+rule "#9306 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 9, c2 == 1, 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" 
+rule "#9307 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, c3 > 12.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 13, 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" 
+rule "#9310 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 11, c3 == 12, 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" 
+rule "#9312 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, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9318 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 11, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9323 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 9, 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" 
+rule "#9325 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, c1 <= 11.5, c2 > 1.5, c3 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 7, 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" 
+rule "#9329 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, c1 <= 11.5, c2 > 1.5, c3 > 6.0, c5 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 6, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 6, c3 == 4, 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" 
+rule "#9340 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, c1 <= 11.5, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 4, 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" 
+rule "#9351 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9354 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 8, c2 == 2, c3 == 1, 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" 
+rule "#9364 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9366 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 7, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9371 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9377 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 9, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9385 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 9, c2 == 1, 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" 
+rule "#9386 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, c1 <= 11.5, c2 <= 12.0, c4 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9387 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 7, 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" 
+rule "#9388 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9389 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 5, 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" 
+rule "#9390 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 == 2, c5 <= 6.5, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9391 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 3, 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" 
+rule "#9393 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 > 6.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 6, c3 == 1, 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" 
+rule "#9394 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 > 6.0, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 5, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10177 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#9397 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 <= 6.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 5, c2 == 10, 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" 
+rule "#9398 poker_hand = 5 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 5, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#9399 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 5, c2 == 8, 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" 
+rule "#9403 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 5, c2 == 4, 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" 
+rule "#9407 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 == 2, c5 > 6.5, c3 > 2.5, c4 > 3.5, c1 > 9.5, c2 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 13, c2 == 13, 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(c4 == 11, c5 == 4, c1 == 4, c3 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9419 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9423 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9430 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 6, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9433 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 6, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9440 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9445 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9451 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 4, c3 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9456 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 3, c3 == 13, 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" 
+rule "#9458 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 3, c3 == 11, 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(c4 == 11, c5 == 4, c1 == 3, c3 == 10, 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" 
+rule "#9460 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 == 4, c3 > 1.5, c1 > 7.0, c2 > 1.0, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 3, c3 == 9, 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" 
+rule "#9462 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 == 4, c3 > 1.5, c1 > 7.0, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 3, c3 == 7, 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" 
+rule "#9463 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 == 4, c3 > 1.5, c1 <= 7.0, c2 > 7.0, c4 > 8.5, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 3, c3 == 6, 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" 
+rule "#9464 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 3, c3 == 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" 
+rule "#9465 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 3, c3 == 4, 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" 
+rule "#9468 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, c5 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 3, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10222 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+rule "#9469 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, c4 <= 12.0, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9471 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 12, c3 == 12, 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" 
+rule "#9475 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 12, c3 == 8, 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" 
+rule "#9482 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9484 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9485 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 9, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9489 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 9, c3 == 9, 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" 
+rule "#9499 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 7, 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" 
+rule "#9500 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 6, 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" 
+rule "#9503 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)
+		 examples.Poker(c4 == 11, c5 == 4, c1 == 2, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 13, 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" 
+rule "#9509 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 == 4, c3 > 4.0, c1 > 9.5, c2 > 4.0, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9511 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 11, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9523 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 9, 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" 
+rule "#9525 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, c3 > 2.0, c2 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 7, 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" 
+rule "#9526 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 6, 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" 
+rule "#9527 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 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 5, 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" 
+rule "#9528 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 > 6.0, c5 > 4.5, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9529 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 3, 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" 
+rule "#9531 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 > 6.0, c5 > 4.5, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 13, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9532 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 12, c1 == 13, 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" 
+rule "#9533 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)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 12, c1 == 12, 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(c4 == 11, c5 == 3, c3 == 12, c1 == 10, 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" 
+rule "#9538 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 12, c1 == 7, 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" 
+rule "#9541 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)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 12, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9543 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 12, c1 == 3, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 12, c1 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9556 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 12, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 11, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9558 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 11, c2 == 12, 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(c4 == 11, c5 == 3, c3 == 11, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9561 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 11, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9563 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 11, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9566 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 11, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9568 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 11, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9569 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 11, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9584 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 10, c1 == 7, c2 == 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" 
+rule "#9586 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 10, c1 == 7, c2 == 3, 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" 
+rule "#9590 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 10, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9591 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 10, c1 == 4, 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" 
+rule "#9593 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, c5 > 6.0, c1 <= 5.0, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 10, c1 == 2, 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" 
+rule "#9595 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, c5 > 6.0, c1 > 5.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 13, 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" 
+rule "#9596 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9601 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 9, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 9, c1 == 8, 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" 
+rule "#9605 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 > 2.5, c4 <= 8.5, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 9, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9608 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9612 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 8, 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" 
+rule "#9613 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.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 7, 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" 
+rule "#9615 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 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" 
+rule "#9618 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.5, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 9, c2 == 2, 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" 
+rule "#9621 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 <= 9.5, c3 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 8, c1 == 12, 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" 
+rule "#9624 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 <= 9.5, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 8, c1 == 9, 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" 
+rule "#9629 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 > 9.5, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 8, c1 == 4, 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" 
+rule "#9631 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 8, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9637 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9638 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 8, 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" 
+rule "#9644 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 > 10.5, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 4, c1 == 11, 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" 
+rule "#9649 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 4, c1 == 6, 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" 
+rule "#9653 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, c1 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 4, c1 == 2, 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" 
+rule "#9654 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 4, c1 == 1, 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" 
+rule "#9655 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9657 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9658 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 6, c1 == 13, 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" 
+rule "#9659 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 6, c1 == 12, 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" 
+rule "#9661 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 6, c1 == 10, 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" 
+rule "#9664 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, c2 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 6, c1 == 7, 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" 
+rule "#9669 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 6, c1 == 2, 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" 
+rule "#9670 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)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9675 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 8, c2 == 12, 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(c4 == 11, c5 == 3, c3 == 5, c1 == 8, c2 == 3, 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" 
+rule "#9689 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 7, 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" 
+rule "#9694 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 <= 10.0, c5 > 8.0, c4 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9700 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 6, c2 == 3, 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" 
+rule "#9701 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 6, c2 == 2, 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" 
+rule "#9704 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 4, 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" 
+rule "#9705 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)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 5, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9708 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 4, c2 == 13, 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" 
+rule "#9713 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 4, c2 == 8, 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" 
+rule "#9714 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, c4 <= 7.0, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 4, c2 == 7, 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" 
+rule "#9716 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 4, c2 == 5, 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" 
+rule "#9718 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 4, c2 == 3, 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" 
+rule "#9719 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 4, c2 == 2, 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" 
+rule "#9722 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 > 2.0, c5 <= 6.5, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 3, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9727 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9732 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 3, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9734 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 13, 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" 
+rule "#9735 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, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 12, 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" 
+rule "#9737 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 == 1, c2 <= 1.5, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 10, 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" 
+rule "#9739 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 == 1, c2 > 1.5, c4 <= 6.5, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 8, 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" 
+rule "#9741 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, c4 > 4.0, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 6, 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" 
+rule "#9742 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, c4 > 4.0, c1 > 6.0, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9745 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 4, c2 == 11, 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" 
+rule "#9747 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 2, c1 == 4, c2 == 9, 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" 
+rule "#9761 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, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 1, c2 == 11, 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" 
+rule "#9762 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 == 2, c1 > 5.5, c2 <= 7.5, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 1, c2 == 10, 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" 
+rule "#9763 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 == 4, c5 <= 12.5, c3 <= 12.0, c2 <= 11.5, c1 <= 10.5, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 1, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#9766 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 == 4, c5 <= 12.5, c3 > 12.0, c1 <= 1, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 1, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#9771 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 == 4, c5 <= 12.5, c3 > 12.0, c1 > 1, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 3, c3 == 1, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#9772 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 13, c2 == 13, 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" 
+rule "#9773 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 13, c2 == 12, 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" 
+rule "#9777 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 == 3, c4 > 3.0, c1 > 9.5, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9779 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 13, c2 == 6, 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" 
+rule "#9781 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 13, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9787 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 12, s5 == 2, c1 == 13, 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" 
+rule "#9791 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 12, s5 == 2, c1 == 9, 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" 
+rule "#9794 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 12, s5 == 2, c1 == 6, 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" 
+rule "#9799 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 12, s5 == 2, c1 == 1, 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" 
+rule "#9803 poker_hand = 2 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 11, s2 == 2, 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(c4 == 11, c5 == 2, c3 == 11, s2 == 1, 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" 
+rule "#9805 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 13, 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" 
+rule "#9807 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 11, 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" 
+rule "#9808 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 10, 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" 
+rule "#9812 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 6, c2 == 13, 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" 
+rule "#9813 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 6, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9819 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 6, c2 == 6, 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" 
+rule "#9827 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 5, c2 == 11, 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" 
+rule "#9831 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 5, c2 == 7, 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" 
+rule "#9832 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 5, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#33 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#9834 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 5, c2 == 4, 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" 
+rule "#9835 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 10, c1 == 5, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#36 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#9842 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 9, c1 == 13, 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" 
+rule "#9845 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 9, c1 == 10, 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" 
+rule "#9849 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 9, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9850 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 9, c1 == 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" 
+rule "#9852 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 9, c1 == 3, 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" 
+rule "#9858 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 8, c2 == 10, 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" 
+rule "#9860 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 8, c2 == 8, 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" 
+rule "#9861 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 8, c2 == 7, 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" 
+rule "#9863 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 8, c2 == 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" 
+rule "#9865 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 8, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#58 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#9867 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 8, c2 == 1, 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" 
+rule "#9868 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9870 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 11, 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" 
+rule "#9879 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 8, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#62 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#9880 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 8, c1 == 6, 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" 
+rule "#9886 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 7, 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" 
+rule "#9888 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 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" 
+rule "#9890 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9893 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 13, 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" 
+rule "#9894 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 12, 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" 
+rule "#9896 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 10, 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" 
+rule "#9898 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9906 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 7, c2 == 6, 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" 
+rule "#9909 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9913 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 3, 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" 
+rule "#9917 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 6, c1 == 1, 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" 
+rule "#9919 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 12, 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" 
+rule "#9925 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 11, c2 == 8, 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" 
+rule "#9928 poker_hand = 2 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 11, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9929 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 11, c2 == 4, 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" 
+rule "#9933 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 10, 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" 
+rule "#9934 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 9, 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" 
+rule "#9937 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 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" 
+rule "#9939 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 4, 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" 
+rule "#9941 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 3, c2 == 12, 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" 
+rule "#9949 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 3, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9951 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 5, c1 == 3, c2 == 2, 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" 
+rule "#9956 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 4, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#99 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#9957 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 4, c1 == 11, 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" 
+rule "#9965 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#9966 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 4, c1 == 2, 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" 
+rule "#9968 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 3, c2 == 13, 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" 
+rule "#9972 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 3, c2 == 9, 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" 
+rule "#9975 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 3, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9979 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 3, c2 == 5, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9986 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 3, c2 == 5, c1 == 3, 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" 
+rule "#9992 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 3, c2 == 1, 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" 
+rule "#9993 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 2, c2 == 13, 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" 
+rule "#9998 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 2, c2 == 8, 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" 
+rule "#10000 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)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 2, c2 == 6, 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" 
+rule "#10003 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 == 3, c2 <= 4.5, c4 > 4.0, c5 > 2.5, c3 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 2, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10004 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#10006 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 1, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10007 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10008 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10010 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 1, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10011 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 1, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10021 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 1, c1 == 4, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10024 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 1, c1 == 4, c2 == 4, 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" 
+rule "#10030 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 2, c3 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10034 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 13, c3 == 10, 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" 
+rule "#10035 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 13, c3 == 9, 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" 
+rule "#10038 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, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10039 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 13, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10041 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 13, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10046 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 12, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10049 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 12, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10052 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 12, c3 == 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" 
+rule "#10053 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 12, c3 == 4, 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" 
+rule "#10057 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 == 2, c2 <= 5.0, c4 > 11.0, c1 <= 6.5, c3 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10061 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 11, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10063 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 11, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10064 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 11, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10070 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 10, c2 == 13, 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" 
+rule "#10071 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 10, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10072 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 10, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10074 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 10, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10078 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 10, c2 == 5, 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(c4 == 11, c5 == 1, c1 == 10, c2 == 4, c3 == 11, 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" 
+rule "#10089 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 10, c2 == 4, c3 == 3, 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" 
+rule "#10090 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 10, c2 == 4, c3 == 2, 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" 
+rule "#10094 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 <= 8.5, c5 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 10, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10095 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 13, 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" 
+rule "#10100 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10103 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10106 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 4, c2 == 11, 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" 
+rule "#10112 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, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 4, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#136 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#10119 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 9, c3 == 1, 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" 
+rule "#10121 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 8, c2 == 12, 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(c4 == 11, c5 == 1, c1 == 8, c2 == 10, 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" 
+rule "#10124 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 8, c2 == 9, 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" 
+rule "#10125 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 8, c2 == 8, 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" 
+rule "#10129 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 8, c2 == 6, c3 == 11, 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" 
+rule "#10141 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 8, c2 == 4, 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" 
+rule "#10146 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 7, c3 == 12, 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" 
+rule "#10147 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 7, c3 == 11, 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" 
+rule "#10150 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, c3 > 2.0, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 7, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#10152 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 7, c3 == 6, 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" 
+rule "#10156 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 7, c3 == 2, 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" 
+rule "#10158 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10160 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10161 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 8, 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" 
+rule "#10166 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10168 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#10171 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 2, c2 == 11, 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" 
+rule "#10173 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, c5 <= 7.5, c1 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 6, c3 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10186 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10192 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 7, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10197 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 7, c3 == 5, 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" 
+rule "#10201 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 7, c3 == 1, 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" 
+rule "#10204 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 4, 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" 
+rule "#10205 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 3, 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" 
+rule "#10206 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 5, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10208 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 4, c2 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10214 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 4, c2 == 13, c3 == 7, 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" 
+rule "#10224 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 4, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10225 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10228 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 4, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10235 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 3, c2 == 11, 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" 
+rule "#10236 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 3, c2 == 10, 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" 
+rule "#10239 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 3, c2 == 7, 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" 
+rule "#10246 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 13, c3 == 13, 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" 
+rule "#10248 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 13, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 13, c3 == 7, 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" 
+rule "#10259 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 12, 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" 
+rule "#10260 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 11, 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" 
+rule "#10262 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 9, 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" 
+rule "#10263 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10265 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10267 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 4, 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" 
+rule "#10273 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 3, c3 == 8, 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" 
+rule "#10279 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 3, c3 == 2, 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" 
+rule "#10281 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)
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 2, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10283 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10284 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 1, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10288 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#10292 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 1, c2 == 6, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10294 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 1, c2 == 6, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10305 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10307 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 11, c5 == 1, c1 == 1, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#10309 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 13, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 13, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10313 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#10315 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10317 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10324 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 12, s5 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10329 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 12, s5 == 3, c1 == 6, 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" 
+rule "#10336 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 12, s5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10338 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 12, 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" 
+rule "#10341 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10343 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10344 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10347 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 4, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10349 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 4, c2 == 10, 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" 
+rule "#10351 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 4, c2 == 8, 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" 
+rule "#10361 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 1, c2 == 13, 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" 
+rule "#10372 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 11, c1 == 1, c2 == 2, 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" 
+rule "#10375 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 10, c2 == 12, 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" 
+rule "#10376 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 10, c2 == 11, 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" 
+rule "#10379 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 10, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10380 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10382 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 10, c2 == 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" 
+rule "#10383 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 10, c2 == 4, 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" 
+rule "#10385 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 10, c2 == 2, 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" 
+rule "#10388 poker_hand = 4 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#10391 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 11, c2 == 11, 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" 
+rule "#10397 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 11, c2 == 5, 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" 
+rule "#10403 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 9, 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" 
+rule "#10407 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 5, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10408 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 5, c2 == 12, 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" 
+rule "#10414 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 5, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10415 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 5, c2 == 5, 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" 
+rule "#10423 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 3, c2 == 11, 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" 
+rule "#10429 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10431 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 3, c2 == 3, 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" 
+rule "#10435 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 9, c1 == 1, 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" 
+rule "#10436 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 == 2, c1 > 1.0, c3 > 2.5, c5 <= 3.0, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 8, c1 == 12, 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" 
+rule "#10440 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 <= 3.0, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 8, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10441 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 8, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10444 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 8, c1 == 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" 
+rule "#10448 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 8, c1 == 1, 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" 
+rule "#10449 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 13, 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" 
+rule "#10450 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 12, 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" 
+rule "#10452 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 == 1, c1 > 11.5, c5 <= 1.5, c2 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10453 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10456 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 6, c2 == 13, 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" 
+rule "#10464 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 > 4.0, c2 > 4.5, c3 <= 2.5, c4 > 6, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 6, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10466 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 6, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10470 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10471 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 3, 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" 
+rule "#10472 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 2, 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" 
+rule "#10473 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 7, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10483 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 11, c1 == 6, 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" 
+rule "#10487 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10496 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 10, c1 == 1, 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" 
+rule "#10504 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 7, 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" 
+rule "#10506 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10512 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 4, c1 == 8, 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" 
+rule "#10516 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 4, c1 == 4, 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" 
+rule "#10520 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 6, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10531 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 5, c1 == 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" 
+rule "#10534 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 5, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10537 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 4, c1 == 12, 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" 
+rule "#10539 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 4, c1 == 10, 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" 
+rule "#10540 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 4, c1 == 9, 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" 
+rule "#10543 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 > 1.5, c4 <= 5.5, c3 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 4, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#247 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#10545 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 4, c1 == 4, 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" 
+rule "#10546 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10547 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 4, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 3, c2 == 13, 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" 
+rule "#10551 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 3, c2 == 11, s1 == 4, 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" 
+rule "#10554 poker_hand = 5 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 3, c2 == 11, s1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#10557 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 3, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10561 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 3, c2 == 3, 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" 
+rule "#10565 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 11, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10573 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 11, c2 == 7, 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" 
+rule "#10582 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 8, 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" 
+rule "#10591 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 6, c2 == 6, 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" 
+rule "#10593 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 <= 9.5, c4 <= 3.5, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 6, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10599 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 5, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10605 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 5, c2 == 5, 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" 
+rule "#10611 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 <= 9.5, c4 <= 3.5, c2 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#261 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#10613 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 2, c1 == 1, 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" 
+rule "#10616 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 12, c2 == 12, 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" 
+rule "#10617 poker_hand = 9 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 12, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#10628 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 11, 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" 
+rule "#10630 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)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 9, 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" 
+rule "#10631 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, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10632 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10633 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10634 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 5, 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" 
+rule "#10635 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#10637 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 13, c5 == 1, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10643 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 9, 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" 
+rule "#10644 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 8, c1 == 13, 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" 
+rule "#10648 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 8, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10654 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 8, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10657 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 7, 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" 
+rule "#10666 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 5, c1 == 6, 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" 
+rule "#10667 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 5, c1 == 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" 
+rule "#10677 poker_hand = 4 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 1, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#10683 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 13, c5 == 1, c1 == 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" 
+rule "#10688 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 == 4, c1 > 11.0, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 12, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10690 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 12, c5 == 11, 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" 
+rule "#10692 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 12, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 12, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10699 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 12, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10705 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 11, c1 == 13, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#10712 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 11, c1 == 13, c5 == 2, 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" 
+rule "#10718 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 11, c1 == 8, 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" 
+rule "#10719 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, c5 > 5.5, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10721 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10724 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 11, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10730 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 10, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10734 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 10, c1 == 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" 
+rule "#10735 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, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 10, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10737 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 10, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10740 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 9, s1 == 3, 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" 
+rule "#10742 poker_hand = 4 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 9, s1 == 1, s3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#10743 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 9, s1 == 1, s3 == 3, 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" 
+rule "#10744 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.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 9, s1 == 1, s3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10747 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 12, 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" 
+rule "#10750 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 9, 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" 
+rule "#10753 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 6, 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" 
+rule "#10758 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 3, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10759 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 3, c5 == 10, 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" 
+rule "#10766 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 3, c5 == 3, 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" 
+rule "#10769 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#304 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#10770 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 8, c1 == 1, 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" 
+rule "#10773 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 11, 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" 
+rule "#10775 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10776 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10777 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 7, 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" 
+rule "#10778 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 6, 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" 
+rule "#10783 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 2, c1 == 12, 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" 
+rule "#10786 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10794 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 7, c5 == 2, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10796 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 13, 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" 
+rule "#10797 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10799 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10802 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 7, 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" 
+rule "#10804 poker_hand = 2 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 6, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10812 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 6, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 6, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10815 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 6, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10817 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 4, 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" 
+rule "#10820 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10823 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10824 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 5, c1 == 10, 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" 
+rule "#10827 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 5, c1 == 7, 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" 
+rule "#10830 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 5, c1 == 4, 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" 
+rule "#10843 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 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 5, c1 == 2, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10844 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 5, c1 == 2, c5 == 1, 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" 
+rule "#10847 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 12, 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" 
+rule "#10848 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10850 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 9, 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" 
+rule "#10854 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 8, c1 == 10, 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" 
+rule "#10859 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 == 2, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 8, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10862 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 8, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10869 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10872 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10874 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 1, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10879 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 4, c5 == 1, c1 == 4, 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" 
+rule "#10884 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 3, c1 == 12, 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" 
+rule "#10895 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 3, c1 == 4, c5 == 10, 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" 
+rule "#10898 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 3, c1 == 4, c5 == 7, 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" 
+rule "#10901 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 3, c1 == 4, c5 == 4, 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" 
+rule "#10907 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 3, c1 == 1, 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" 
+rule "#10912 poker_hand = 2 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 10, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10917 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 10, c1 == 7, 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" 
+rule "#10920 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 10, c1 == 4, 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" 
+rule "#10924 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 9, 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" 
+rule "#10929 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 8, c1 == 9, 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" 
+rule "#10932 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 8, c1 == 2, 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" 
+rule "#10940 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 5, 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" 
+rule "#10941 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 4, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10944 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 4, c1 == 10, 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" 
+rule "#10954 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10956 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 2, c1 == 12, 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" 
+rule "#10963 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 2, c5 == 2, c1 == 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" 
+rule "#10972 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 1, s5 == 2, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10973 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 1, s5 == 2, c1 == 11, 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" 
+rule "#10974 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 1, s5 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10975 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 1, s5 == 2, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10976 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 1, s5 == 2, c1 == 8, 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" 
+rule "#10983 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)
+		 examples.Poker(c4 == 10, c3 == 12, c2 == 1, s5 == 2, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10988 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 13, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10991 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 13, c5 == 7, 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" 
+rule "#10992 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 13, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10997 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 13, c5 == 1, 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" 
+rule "#11002 poker_hand = 4 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 13, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#11008 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 13, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 11, 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" 
+rule "#11013 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 10, 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" 
+rule "#11016 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 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" 
+rule "#11018 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 5, 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" 
+rule "#11020 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 3, c5 == 13, 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" 
+rule "#11022 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 3, c5 == 11, 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" 
+rule "#11028 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 3, c5 == 5, 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" 
+rule "#11031 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 3, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#375 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11033 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 2, 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" 
+rule "#11034 poker_hand = 4 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 1, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#11038 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 1, c5 == 9, 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" 
+rule "#11045 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 12, c1 == 1, c5 == 2, 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" 
+rule "#11047 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 11, c1 == 13, 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" 
+rule "#11048 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, c4 <= 10.0, c5 > 7.5, c2 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 11, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11050 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 11, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#11063 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#11064 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 9, 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" 
+rule "#11065 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, c4 > 10.0, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11066 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 7, 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" 
+rule "#11067 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 6, 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" 
+rule "#11070 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 == 4, c4 > 1.5, c1 > 1.0, c2 > 2.0, c3 <= 2.5, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 10, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11076 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11077 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 9, 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" 
+rule "#11080 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 6, 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" 
+rule "#11081 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 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" 
+rule "#11082 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 > 2.0, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#400 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11083 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 3, 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" 
+rule "#11084 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 2, 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" 
+rule "#11085 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 9, c5 == 1, 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" 
+rule "#11089 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, c1 <= 8.5, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#405 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11090 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#406 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11092 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 7, 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" 
+rule "#11095 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 4, 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" 
+rule "#11104 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 3, c5 == 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" 
+rule "#11106 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 3, c5 == 3, 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" 
+rule "#11109 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 8, c1 == 2, 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" 
+rule "#11114 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 7, c1 == 10, 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" 
+rule "#11118 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 7, c1 == 6, 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" 
+rule "#11120 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 7, c1 == 4, 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" 
+rule "#11126 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 7, c1 == 3, c5 == 8, 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" 
+rule "#11127 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 7, c1 == 3, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11135 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#11143 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 13, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11145 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 13, c5 == 4, 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" 
+rule "#11149 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11150 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 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" 
+rule "#11151 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11160 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 8, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11164 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 8, c5 == 2, 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" 
+rule "#11166 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 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" 
+rule "#11169 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 4, 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" 
+rule "#11171 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 2, 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" 
+rule "#11172 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 6, c1 == 1, 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" 
+rule "#11173 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11174 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 5, c1 == 12, 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" 
+rule "#11175 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 5, c1 == 11, c5 == 13, 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" 
+rule "#11183 poker_hand = 2 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 5, c1 == 11, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11190 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11191 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11193 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 5, c1 == 5, 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" 
+rule "#11196 poker_hand = 5 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 5, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#11197 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 5, c1 == 1, 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" 
+rule "#11199 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 4, c1 == 12, 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" 
+rule "#11201 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 4, c1 == 10, 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" 
+rule "#11202 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 > 1.5, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 4, c1 == 9, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11211 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 4, c1 == 9, c5 == 4, 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" 
+rule "#11217 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 4, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11220 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 4, c1 == 3, 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" 
+rule "#11222 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11226 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 10, 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" 
+rule "#11227 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 9, 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" 
+rule "#11228 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 8, 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" 
+rule "#11229 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 7, 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" 
+rule "#11239 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 5, c1 == 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" 
+rule "#11243 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 5, c1 == 1, 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" 
+rule "#11244 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 4, 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" 
+rule "#11246 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#462 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11247 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 3, c5 == 1, 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" 
+rule "#11251 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11254 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 7, 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" 
+rule "#11257 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 6, c5 == 11, 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" 
+rule "#11264 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 6, c5 == 4, 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" 
+rule "#11268 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 5, 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" 
+rule "#11269 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)
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11276 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 1, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11280 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 1, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11281 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11285 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 11, c2 == 1, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#11290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 13, c1 == 9, 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" 
+rule "#11292 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 13, c1 == 7, 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" 
+rule "#11293 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 13, c1 == 6, 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" 
+rule "#11294 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 13, c1 == 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" 
+rule "#11296 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 == 3, c1 > 12.0, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#482 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11300 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 == 3, c1 > 12.0, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11303 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 12, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11307 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 12, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11308 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 12, c2 == 4, 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" 
+rule "#11312 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, c1 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11317 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 11, c2 == 8, 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" 
+rule "#11320 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, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 11, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#486 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11324 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#487 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11337 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 9, c1 == 13, c2 == 2, 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" 
+rule "#11342 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 9, c1 == 9, 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" 
+rule "#11348 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 9, c1 == 3, 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" 
+rule "#11352 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11353 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 8, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11355 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11356 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 8, c2 == 8, 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" 
+rule "#11358 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 8, c2 == 6, 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" 
+rule "#11361 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, c2 <= 11.0, c1 <= 4.5, c5 <= 4.0, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 8, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#504 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11362 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 8, c2 == 2, 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" 
+rule "#11364 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 7, c1 == 13, 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" 
+rule "#11365 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, c2 > 11.0, c5 > 3.0, c1 > 7.0, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11370 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11371 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11372 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 7, c1 == 5, 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" 
+rule "#11377 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 6, c2 == 13, 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" 
+rule "#11378 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 6, c2 == 12, 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" 
+rule "#11380 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 == 3, c1 <= 12.5, c5 <= 2.5, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 6, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#514 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11381 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 6, c2 == 9, 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" 
+rule "#11385 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 6, c2 == 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" 
+rule "#11387 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 6, c2 == 3, 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" 
+rule "#11388 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 6, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#519 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11391 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 5, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#11392 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11395 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11398 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 5, c1 == 5, 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" 
+rule "#11402 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11403 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 4, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11405 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 4, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11407 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11408 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11410 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 4, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11412 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 4, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11417 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11418 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11420 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11426 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#11427 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11430 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11431 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11432 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 2, c1 == 10, 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" 
+rule "#11433 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 2, c1 == 9, 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" 
+rule "#11437 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)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 2, c1 == 5, 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" 
+rule "#11445 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 <= 10.5, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 2, c1 == 4, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11449 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 2, c1 == 4, c2 == 2, 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" 
+rule "#11451 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 2, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11455 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11456 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11462 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11463 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11465 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 10, c5 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11467 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11468 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#11470 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11476 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 8, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11480 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 8, c5 == 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" 
+rule "#11481 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 8, c5 == 4, 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" 
+rule "#11485 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 7, 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" 
+rule "#11488 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 4, 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" 
+rule "#11490 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11493 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11494 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 12, c1 == 11, 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" 
+rule "#11496 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 == 1, c5 > 6.5, c1 > 2.0, c2 <= 8.5, c3 <= 7.5, c4 > 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11499 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 12, c1 == 4, 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" 
+rule "#11505 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 <= 10.5, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11510 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 12, c1 == 9, 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" 
+rule "#11514 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11520 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 10, 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" 
+rule "#11524 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 6, 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" 
+rule "#11527 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 5, c1 == 11, 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" 
+rule "#11532 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 5, c1 == 6, 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" 
+rule "#11537 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 5, c1 == 1, 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" 
+rule "#11539 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 4, c1 == 12, 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" 
+rule "#11540 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 4, c1 == 11, 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" 
+rule "#11541 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 4, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11551 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11553 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 11, c5 == 1, 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" 
+rule "#11555 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 10, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11557 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 10, c5 == 10, 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" 
+rule "#11559 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 10, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11562 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 10, c5 == 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" 
+rule "#11563 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 10, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11565 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 10, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11566 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 10, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 9, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11572 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 9, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11579 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 9, c1 == 4, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11582 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 9, c1 == 4, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11590 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 9, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11593 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 13, c1 == 12, 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" 
+rule "#11597 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, c4 <= 8.0, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#561 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11603 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 13, c1 == 2, 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" 
+rule "#11605 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 12, 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" 
+rule "#11607 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#569 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11608 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 > 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11609 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11615 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11616 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 8, c5 == 1, 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" 
+rule "#11619 poker_hand = 4 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#11622 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 7, c1 == 8, 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" 
+rule "#11623 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 7, c1 == 7, 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" 
+rule "#11624 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 7, c1 == 6, 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" 
+rule "#11626 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 7, c1 == 4, 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" 
+rule "#11629 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 7, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11631 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11632 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 10, 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" 
+rule "#11634 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 9, 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" 
+rule "#11638 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 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" 
+rule "#11639 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 6, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 5, c1 == 10, 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" 
+rule "#11659 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 == 1, c3 <= 12.5, c5 <= 8.5, c4 > 7.0, c1 > 1.5, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 5, c1 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#11660 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 5, c1 == 5, c5 == 4, 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" 
+rule "#11666 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, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 5, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#584 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11667 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 5, c1 == 1, 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" 
+rule "#11668 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 13, 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" 
+rule "#11670 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 11, 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" 
+rule "#11681 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 8, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 8, c5 == 4, 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" 
+rule "#11683 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 > 3.5, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 8, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11686 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11688 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 5, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11697 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 4, c1 == 5, c5 == 4, 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" 
+rule "#11706 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 3, c1 == 12, 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" 
+rule "#11707 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 3, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11708 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 3, c1 == 10, 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" 
+rule "#11710 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 3, c1 == 8, 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" 
+rule "#11713 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 3, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11714 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 3, c1 == 4, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 3, c1 == 4, c5 == 9, 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" 
+rule "#11727 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 3, c1 == 3, 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" 
+rule "#11730 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 13, 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" 
+rule "#11732 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 11, 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" 
+rule "#11733 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11741 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 8, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11748 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11749 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11751 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11752 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11753 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 2, 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" 
+rule "#11754 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, c4 <= 11.5, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 2, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#607 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11757 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 13, c1 == 11, 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" 
+rule "#11766 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 13, c1 == 2, 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" 
+rule "#11767 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 13, c1 == 1, 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" 
+rule "#11769 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 11, 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" 
+rule "#11770 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 10, 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" 
+rule "#11771 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 9, 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" 
+rule "#11773 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)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 7, 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" 
+rule "#11774 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 9, c2 == 1, c5 == 2, 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" 
+rule "#11780 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 13, 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" 
+rule "#11785 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 12, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11786 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 12, c2 == 8, 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" 
+rule "#11797 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 8, 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" 
+rule "#11799 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, c3 <= 4.5, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11800 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 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" 
+rule "#11801 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 4, 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" 
+rule "#11802 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, c4 <= 6.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11812 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11814 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 13, c1 == 2, c2 == 2, 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" 
+rule "#11818 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 12, c2 == 12, 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" 
+rule "#11820 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 12, c2 == 10, 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" 
+rule "#11828 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 12, c2 == 2, 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" 
+rule "#11829 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 12, c2 == 1, 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" 
+rule "#11831 poker_hand = 5 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 12, s2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
 end
 
-rule "#643 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11832 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, c1 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 12, s2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#644 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11834 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 12, s2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11836 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 10, 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" 
+rule "#11837 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, c2 > 8.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 9, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11840 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 9, c2 == 10, 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" 
+rule "#11842 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 9, c2 == 8, 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" 
+rule "#11850 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 <= 4.5, c1 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11855 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 3, 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" 
+rule "#11857 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 11, c1 == 1, 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" 
+rule "#11858 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 13, 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" 
+rule "#11861 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 12, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#658 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11864 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 > 1.0, c2 > 12.5, c3 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11868 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 12, c1 == 4, 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" 
+rule "#11873 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#660 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11874 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 9, 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" 
+rule "#11878 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11879 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 4, 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" 
+rule "#11882 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 10, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11883 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 13, 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" 
+rule "#11885 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11890 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 10, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11897 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 10, c2 == 2, 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" 
+rule "#11899 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11902 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 6, 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" 
+rule "#11911 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 5, c2 == 5, 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" 
+rule "#11914 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 5, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11917 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11918 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11919 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 8, c1 == 12, 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" 
+rule "#11923 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 == 1, c1 > 1.5, c5 > 6.5, c4 <= 8.5, c3 > 1.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 8, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11924 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 8, c1 == 9, 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" 
+rule "#11925 poker_hand = 6 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 8, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#11929 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 8, c1 == 4, 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" 
+rule "#11933 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 13, 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" 
+rule "#11934 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 12, 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" 
+rule "#11943 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 9, c1 == 7, 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" 
+rule "#11945 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 9, c1 == 5, 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" 
+rule "#11951 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11954 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 4, 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" 
+rule "#11955 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, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#11961 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 6, c1 == 10, 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" 
+rule "#11963 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, c3 <= 9.0, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11965 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 6, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#11967 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 6, c1 == 4, 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" 
+rule "#11977 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 5, c1 == 7, 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" 
+rule "#11978 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 5, c1 == 6, 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" 
+rule "#11979 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 5, c1 == 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" 
+rule "#11983 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#696 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#11985 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11987 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 4, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11988 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 4, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11989 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11992 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 4, c2 == 5, 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" 
+rule "#11996 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 4, c2 == 1, 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" 
+rule "#11998 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 3, c1 == 12, 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" 
+rule "#11999 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 3, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12006 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 3, c1 == 9, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12013 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 3, c1 == 9, c2 == 1, 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" 
+rule "#12014 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 3, c1 == 8, 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" 
+rule "#12016 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 3, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#705 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12024 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 3, c1 == 3, c2 == 8, 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" 
+rule "#12025 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 3, c1 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#709 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12034 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 2, c2 == 13, 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" 
+rule "#12035 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, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 2, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12037 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 2, c2 == 10, 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" 
+rule "#12038 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 2, c2 == 9, 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" 
+rule "#12042 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 2, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#717 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12048 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 == 4, c4 > 1.0, c3 > 2.0, c5 > 12.5, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 1, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#719 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12054 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 1, c2 == 11, c1 == 8, 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" 
+rule "#12057 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 1, c2 == 11, c1 == 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" 
+rule "#12062 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 1, c2 == 10, 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" 
+rule "#12063 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 1, c2 == 9, 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" 
+rule "#12065 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 1, c2 == 7, 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" 
+rule "#12070 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)
+		 examples.Poker(c4 == 10, c3 == 8, c5 == 1, c2 == 2, 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" 
+rule "#12072 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 13, 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" 
+rule "#12073 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12074 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12075 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 10, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12079 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 10, c2 == 9, 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" 
+rule "#12089 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 8, 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" 
+rule "#12093 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 4, 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" 
+rule "#12094 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 13, c5 == 3, 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" 
+rule "#12099 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 12, 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" 
+rule "#12101 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 10, 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" 
+rule "#12102 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 9, 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" 
+rule "#12103 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12106 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12107 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12108 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 3, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12114 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 11, c2 == 3, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12125 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 10, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12127 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 10, c2 == 9, 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" 
+rule "#12132 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 10, c2 == 4, 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" 
+rule "#12133 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 10, c2 == 3, 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" 
+rule "#12135 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 <= 11.5, c3 <= 11.5, c2 <= 4.5, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 10, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12136 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 13, 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" 
+rule "#12138 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 12, c5 == 12, 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" 
+rule "#12145 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 12, c5 == 5, 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" 
+rule "#12146 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 12, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12150 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12156 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12159 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 9, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12162 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12165 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 9, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12167 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 9, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#12185 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 3, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12193 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 3, c5 == 3, 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" 
+rule "#12203 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 1, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12207 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 8, c2 == 1, c5 == 3, 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" 
+rule "#12210 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 7, c2 == 13, 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" 
+rule "#12213 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 == 4, c4 > 8.5, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 7, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12218 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 7, c2 == 5, 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" 
+rule "#12219 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 7, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#12222 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12226 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 6, c5 == 10, 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" 
+rule "#12228 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 6, c5 == 8, 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" 
+rule "#12232 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 6, c5 == 4, 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" 
+rule "#12235 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 6, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12236 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 5, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12237 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 5, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12241 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 5, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12242 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 5, c5 == 7, 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" 
+rule "#12245 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 <= 13, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 5, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12247 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 5, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12249 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 4, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 4, c5 == 10, 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" 
+rule "#12253 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 <= 13, c3 <= 13, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 4, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12254 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 4, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 4, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12258 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 4, c5 == 4, 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" 
+rule "#12266 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 3, c5 == 9, 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" 
+rule "#12267 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 3, c5 == 8, 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" 
+rule "#12271 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 3, c5 == 4, 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" 
+rule "#12274 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, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 3, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12275 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 <= 10.0, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 2, c2 == 12, 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" 
+rule "#12278 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 2, c2 == 10, 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" 
+rule "#12281 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12282 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 2, c2 == 6, 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" 
+rule "#12285 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)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 2, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 1, s5 == 4, s3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 1, s5 == 4, s3 == 2, 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" 
+rule "#12293 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, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 7, c1 == 1, s5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12295 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 13, c2 == 13, 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" 
+rule "#12296 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 13, c2 == 12, 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" 
+rule "#12297 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 13, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12299 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12307 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12310 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 12, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12313 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 12, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12314 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 12, c2 == 7, 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" 
+rule "#12315 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 12, c2 == 6, 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" 
+rule "#12316 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 > 1.5, c4 > 12.0, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 12, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12318 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 12, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12319 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 12, c2 == 2, 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" 
+rule "#12320 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 > 1.5, c4 > 12.0, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 12, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#801 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12322 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 11, c2 == 12, 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" 
+rule "#12327 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 11, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12333 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 11, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12334 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 10, c2 == 13, 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" 
+rule "#12335 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 10, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#12336 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 10, c2 == 11, 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" 
+rule "#12338 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 10, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#12344 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 10, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12355 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 9, c2 == 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" 
+rule "#12358 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 <= 12.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 9, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12363 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 8, c5 == 13, c2 == 10, 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" 
+rule "#12369 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 8, c5 == 13, c2 == 4, 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" 
+rule "#12376 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 8, c5 == 9, 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" 
+rule "#12377 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 8, c5 == 8, 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" 
+rule "#12378 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 8, c5 == 7, 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" 
+rule "#12379 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 8, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12386 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#814 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12387 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 11, 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" 
+rule "#12392 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 8, c5 == 11, 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" 
+rule "#12397 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 8, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#819 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12403 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 7, 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" 
+rule "#12404 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 6, 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" 
+rule "#12407 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 3, 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" 
+rule "#12408 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 7, c2 == 2, 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" 
+rule "#12412 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 6, c2 == 11, 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" 
+rule "#12415 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 6, c2 == 8, 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" 
+rule "#12421 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 6, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12425 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12429 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 11, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12438 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 11, c5 == 1, 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" 
+rule "#12441 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 10, c5 == 11, 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" 
+rule "#12442 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 10, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#12452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 9, 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" 
+rule "#12453 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 8, 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" 
+rule "#12458 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 3, 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" 
+rule "#12460 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 4, c2 == 1, 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" 
+rule "#12466 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 3, c2 == 8, 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" 
+rule "#12467 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 3, c2 == 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" 
+rule "#12471 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#12472 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 3, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12482 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12485 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 3, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12489 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12492 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 3, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12494 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 3, c2 == 3, 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" 
+rule "#12497 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 2, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12500 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 12, 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" 
+rule "#12505 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 11, c5 == 9, 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" 
+rule "#12508 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 11, c5 == 6, 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" 
+rule "#12516 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)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 8, 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" 
+rule "#12517 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, c5 > 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12518 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 6, c1 == 1, c2 == 6, 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" 
+rule "#12524 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12525 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 13, c1 == 12, 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" 
+rule "#12528 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 13, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12529 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 13, c1 == 8, 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" 
+rule "#12531 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 13, c1 == 6, 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" 
+rule "#12532 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 13, 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" 
+rule "#12536 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 13, c1 == 1, 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" 
+rule "#12541 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 9, 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" 
+rule "#12542 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12544 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 7, c2 == 12, 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" 
+rule "#12552 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 7, c2 == 4, 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" 
+rule "#12553 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 7, c2 == 3, 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" 
+rule "#12560 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 4, c2 == 11, 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" 
+rule "#12561 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, c3 <= 6.5, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 12, c1 == 4, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#867 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12577 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 11, c1 == 10, 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" 
+rule "#12579 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, c1 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12581 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, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 11, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#876 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12584 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 11, c1 == 3, 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" 
+rule "#12585 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12586 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 11, c1 == 1, 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" 
+rule "#12590 poker_hand = 6 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
 end
 
-rule "#880 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12597 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 10, c1 == 3, 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" 
+rule "#12600 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 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" 
+rule "#12601 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 12, 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" 
+rule "#12603 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#12604 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12605 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 8, 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" 
+rule "#12608 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 6, c1 == 12, 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" 
+rule "#12609 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 6, c1 == 11, 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" 
+rule "#12610 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 6, c1 == 10, 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" 
+rule "#12622 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 3, 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" 
+rule "#12623 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, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#896 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12624 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 9, c2 == 1, 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" 
+rule "#12625 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 13, 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" 
+rule "#12626 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12630 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 8, 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" 
+rule "#12633 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 5, 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" 
+rule "#12635 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 4, c1 == 12, 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" 
+rule "#12641 poker_hand = 5 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 4, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#12648 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 2, 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" 
+rule "#12652 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 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12658 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 8, c2 == 1, c1 == 4, 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" 
+rule "#12664 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12669 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12671 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12674 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12675 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 6, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 6, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12678 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 6, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12685 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 6, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12688 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 5, c2 == 13, 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" 
+rule "#12690 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 5, c2 == 11, 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" 
+rule "#12691 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 5, c2 == 10, 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" 
+rule "#12697 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 5, c2 == 4, 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" 
+rule "#12699 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 5, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12700 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 5, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 4, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12702 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 4, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12703 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 4, c1 == 11, 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" 
+rule "#12708 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 4, c1 == 8, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12714 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 4, c1 == 8, c2 == 5, 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" 
+rule "#12726 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 3, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12729 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 3, c1 == 10, 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" 
+rule "#12730 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 3, c1 == 9, 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" 
+rule "#12731 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 3, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12736 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 3, c1 == 3, 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" 
+rule "#12739 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 2, c2 == 13, 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" 
+rule "#12740 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 2, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12741 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 2, c2 == 10, 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" 
+rule "#12743 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 2, c2 == 9, 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" 
+rule "#12745 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12746 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 2, c2 == 6, 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" 
+rule "#12752 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)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 1, c2 == 13, 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" 
+rule "#12754 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 1, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12758 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 1, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12760 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 1, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12762 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12763 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 5, c5 == 1, c2 == 2, 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" 
+rule "#12766 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 12, 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" 
+rule "#12767 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 11, 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" 
+rule "#12768 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 10, 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" 
+rule "#12769 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12770 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 8, c5 == 13, 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" 
+rule "#12781 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, c4 <= 9.5, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 8, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12786 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 4, 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" 
+rule "#12788 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, c4 > 9.5, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12793 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 10, 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" 
+rule "#12794 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 9, 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" 
+rule "#12797 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 6, 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" 
+rule "#12806 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 3, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#942 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12810 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, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 3, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 12, c1 == 3, c5 == 2, 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" 
+rule "#12820 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 11, c1 == 8, 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" 
+rule "#12825 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 11, c1 == 3, 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" 
+rule "#12827 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 11, c1 == 1, 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" 
+rule "#12828 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 10, c5 == 13, 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" 
+rule "#12829 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 10, c5 == 12, 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" 
+rule "#12830 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 10, c5 == 11, 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" 
+rule "#12838 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 == 1, c3 > 1.0, c5 <= 12.5, c2 > 11.5, c1 > 9.0, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 10, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12839 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 10, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12842 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 9, c1 == 12, 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" 
+rule "#12843 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 9, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#955 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12844 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 == 1, c3 > 1.0, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 9, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12845 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 9, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12848 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 9, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12850 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 9, c1 == 4, 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" 
+rule "#12852 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 9, c1 == 2, 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" 
+rule "#12856 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12860 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 7, 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" 
+rule "#12867 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 5, c5 == 8, 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" 
+rule "#12870 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 5, c5 == 5, 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" 
+rule "#12873 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 5, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12875 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#12876 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 3, 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" 
+rule "#12877 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#964 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#12881 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 1, c5 == 10, 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" 
+rule "#12882 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, c5 > 10.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 1, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12886 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 1, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12888 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 8, c1 == 1, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12892 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 7, c5 == 12, 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" 
+rule "#12895 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 7, c5 == 9, 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" 
+rule "#12902 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 7, c5 == 8, c1 == 7, 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" 
+rule "#12906 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 7, c5 == 8, c1 == 3, 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" 
+rule "#12911 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 7, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12921 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 13, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12925 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 13, c5 == 4, 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" 
+rule "#12929 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 12, 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" 
+rule "#12930 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12931 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 10, 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" 
+rule "#12941 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 9, c5 == 4, 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" 
+rule "#12944 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 9, c5 == 1, 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" 
+rule "#12945 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 6, c1 == 8, 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" 
+rule "#12953 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12954 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12956 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 10, 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" 
+rule "#12960 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, c5 > 5.0, c1 > 6.5, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12962 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 4, 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" 
+rule "#12963 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, c5 <= 5.0, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 3, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#12966 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 3, c1 == 10, 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" 
+rule "#12986 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 1, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12987 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 5, c5 == 1, c1 == 3, 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" 
+rule "#12991 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 12, 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" 
+rule "#12994 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 11, c1 == 11, 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" 
+rule "#13000 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 11, c1 == 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" 
+rule "#13006 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#995 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13008 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 7, c1 == 13, 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" 
+rule "#13010 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 7, c1 == 11, 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" 
+rule "#13014 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 == 1, c1 > 1.0, c2 > 1.0, c4 > 1.0, c3 <= 1.5, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 7, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13024 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13025 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 4, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13032 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 11, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13035 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 11, c1 == 7, 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" 
+rule "#13043 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 9, 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" 
+rule "#13045 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13048 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 4, 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" 
+rule "#13050 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 3, c5 == 2, 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" 
+rule "#13055 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 2, c1 == 13, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13056 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 2, c1 == 13, c5 == 9, 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" 
+rule "#13066 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 2, c1 == 11, 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" 
+rule "#13070 poker_hand = 3 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 2, c1 == 10, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#1009 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13071 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 2, c1 == 10, c5 == 9, 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" 
+rule "#13092 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 1, s3 == 1, c1 == 13, 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" 
+rule "#13094 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)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 1, s3 == 1, c1 == 11, 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" 
+rule "#13095 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 == 4, c2 > 7.5, c1 <= 12.0, c3 <= 10.5, c4 <= 7.5, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 4, c2 == 1, s3 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13108 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 13, c1 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13109 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 13, c1 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13122 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 13, c1 == 8, 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" 
+rule "#13125 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 13, c1 == 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" 
+rule "#13126 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13128 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 13, c1 == 2, 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" 
+rule "#13131 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 12, c1 == 12, 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" 
+rule "#13132 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 12, c1 == 11, 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" 
+rule "#13135 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 12, c1 == 8, 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" 
+rule "#13136 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 12, c1 == 7, 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" 
+rule "#13137 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 12, c1 == 6, 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" 
+rule "#13138 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 12, c1 == 5, c2 == 13, 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" 
+rule "#13139 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 12, c1 == 5, c2 == 12, 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" 
+rule "#13154 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, c1 > 5.0, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1031 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13159 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 9, 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" 
+rule "#13160 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, c1 > 2.5, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1035 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13161 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 7, 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" 
+rule "#13163 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 7, c2 == 11, 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" 
+rule "#13167 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 7, c2 == 7, 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" 
+rule "#13175 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 > 5.0, c4 <= 8.5, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1048 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13178 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 11, c1 == 2, 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" 
+rule "#13185 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 9, c1 == 9, 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" 
+rule "#13186 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 9, c1 == 8, 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" 
+rule "#13190 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 9, c1 == 4, 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" 
+rule "#13192 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 9, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13194 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13198 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 9, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13202 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 9, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13211 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 8, 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" 
+rule "#13214 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, c5 <= 10.0, c2 <= 3.0, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13215 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 4, 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" 
+rule "#13216 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 3, 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" 
+rule "#13225 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 2, c2 == 5, 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" 
+rule "#13227 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 8, c1 == 2, c2 == 3, 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" 
+rule "#13231 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1065 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13241 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, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 9, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1066 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13243 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, c1 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 9, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13248 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13250 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13254 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 2, 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" 
+rule "#13255 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, c2 > 7.0, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 7, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13259 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13263 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13264 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 6, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 5, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13273 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 5, c2 == 9, 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" 
+rule "#13274 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 5, c2 == 8, 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" 
+rule "#13277 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 5, c2 == 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" 
+rule "#13281 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 5, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13282 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 4, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13285 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 4, c2 == 10, 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" 
+rule "#13286 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 4, c2 == 9, 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" 
+rule "#13288 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 4, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13292 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 4, c2 == 3, 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" 
+rule "#13295 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, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13307 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 13, c1 == 1, 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" 
+rule "#13308 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 12, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1076 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13309 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13321 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 11, 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" 
+rule "#13322 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 10, 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" 
+rule "#13324 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 8, 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" 
+rule "#13325 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 3, c2 == 7, 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" 
+rule "#13334 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, c3 <= 5.0, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 2, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1083 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13339 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, c3 > 5.0, c1 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1085 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13345 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 13, 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" 
+rule "#13356 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)
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 11, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13357 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 11, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13361 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13362 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13365 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13369 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 4, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13379 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 3, c5 == 1, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13382 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 13, 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" 
+rule "#13385 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 10, 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" 
+rule "#13387 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 8, 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" 
+rule "#13388 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 7, 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" 
+rule "#13389 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 6, 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" 
+rule "#13395 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 2, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1097 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13396 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 2, c1 == 10, 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" 
+rule "#13398 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 13, c2 == 2, c1 == 8, 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" 
+rule "#13408 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13415 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 12, c2 == 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" 
+rule "#13416 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 12, c2 == 4, 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" 
+rule "#13417 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 12, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13420 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 11, c1 == 12, 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" 
+rule "#13423 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13427 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13430 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 11, c1 == 3, 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" 
+rule "#13431 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 11, c1 == 2, 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" 
+rule "#13436 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 == 3, c2 <= 11.0, c1 > 1.5, c5 > 11.5, c3 > 3.5, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#13437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 10, c1 == 9, 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" 
+rule "#13441 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 10, c1 == 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" 
+rule "#13445 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 10, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13448 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 11, 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" 
+rule "#13449 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 10, 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" 
+rule "#13450 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 9, 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" 
+rule "#13456 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 7, c2 == 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" 
+rule "#13462 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 7, c2 == 3, 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" 
+rule "#13466 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13468 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 3, 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" 
+rule "#13469 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13470 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 9, c1 == 1, 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" 
+rule "#13471 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13472 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13477 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 8, c2 == 12, 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" 
+rule "#13481 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 > 1.5, c5 > 2.0, c3 <= 12.0, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#13489 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13501 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 5, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13502 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 5, c2 == 2, 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" 
+rule "#13505 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13506 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13507 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 8, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13509 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13525 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13526 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 7, 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" 
+rule "#13528 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13529 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13530 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 3, 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" 
+rule "#13539 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 1, c2 == 6, 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" 
+rule "#13543 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 7, c1 == 1, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13545 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 6, c1 == 13, 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" 
+rule "#13547 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 6, c1 == 11, 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" 
+rule "#13552 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 6, c1 == 6, 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" 
+rule "#13556 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13557 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 6, c1 == 1, 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" 
+rule "#13562 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 5, c1 == 9, 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" 
+rule "#13563 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 5, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13564 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 5, c1 == 2, 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" 
+rule "#13570 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 5, c1 == 1, 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" 
+rule "#13572 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 > 13, c4 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13574 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 10, 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" 
+rule "#13575 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1142 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13576 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13577 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 7, 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" 
+rule "#13578 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 6, 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" 
+rule "#13581 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 3, 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" 
+rule "#13583 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, c3 > 2.0, c4 <= 1.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13594 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 3, c1 == 3, 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" 
+rule "#13595 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 3, c1 == 2, 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" 
+rule "#13596 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 3, c1 == 1, 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" 
+rule "#13601 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 2, c2 == 9, 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" 
+rule "#13605 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 2, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13606 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13608 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#13611 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 1, s4 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13615 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 1, s4 == 1, c1 == 11, 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" 
+rule "#13620 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 1, s4 == 1, c1 == 6, 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" 
+rule "#13621 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)
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 1, s4 == 1, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13623 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 2, c5 == 1, s4 == 1, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13626 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 13, 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" 
+rule "#13627 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 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" 
+rule "#13628 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13629 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13630 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13631 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13632 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13638 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13642 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 12, s5 == 1, 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" 
+rule "#13643 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13655 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13656 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 12, c1 == 1, 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" 
+rule "#13660 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 8, 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" 
+rule "#13672 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 3, c1 == 6, 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" 
+rule "#13675 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 3, c1 == 3, 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" 
+rule "#13679 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 10, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13686 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 10, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13687 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13688 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13690 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 10, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13692 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 10, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 9, c1 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13698 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 9, c1 == 13, c2 == 8, 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" 
+rule "#13708 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 9, c1 == 10, 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" 
+rule "#13711 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 9, c1 == 7, 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" 
+rule "#13713 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 9, c1 == 5, 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" 
+rule "#13714 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13716 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 9, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13723 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 12, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13724 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 12, c1 == 8, 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" 
+rule "#13732 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 11, 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" 
+rule "#13733 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 10, 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" 
+rule "#13735 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13736 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 7, 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" 
+rule "#13737 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13738 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13739 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13741 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 8, c2 == 1, 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" 
+rule "#13743 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 13, 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" 
+rule "#13744 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 12, 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" 
+rule "#13745 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 11, 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" 
+rule "#13747 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1189 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13751 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 8, c2 == 10, 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" 
+rule "#13759 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 8, c2 == 2, 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" 
+rule "#13764 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, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1194 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13766 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 2, 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" 
+rule "#13772 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 1, c2 == 8, 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" 
+rule "#13773 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 7, c1 == 1, c2 == 7, 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" 
+rule "#13780 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 6, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13782 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 6, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13785 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 6, c1 == 8, 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" 
+rule "#13788 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 6, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 6, c1 == 3, 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" 
+rule "#13791 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 6, c1 == 2, 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" 
+rule "#13796 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13799 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 5, c1 == 7, 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" 
+rule "#13803 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 5, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13810 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13820 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 3, c1 == 1, 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" 
+rule "#13837 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 2, c1 == 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" 
+rule "#13840 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 2, c1 == 2, 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" 
+rule "#13844 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 1, c1 == 11, 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" 
+rule "#13854 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 == 2, c4 > 6.5, c5 > 1.5, c3 <= 3.0, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 4, c2 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#13856 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 3, c2 == 12, 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" 
+rule "#13857 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 == 1, c5 > 2.0, c3 <= 9.0, c4 <= 9.0, c1 <= 8.5, c2 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13861 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 3, c2 == 7, 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" 
+rule "#13867 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 3, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13872 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 2, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13877 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13878 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 2, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13881 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 2, c2 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13882 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 2, c2 == 2, c1 == 10, 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" 
+rule "#13892 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 2, c2 == 1, 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" 
+rule "#13893 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13894 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13896 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 11, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13898 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 11, c2 == 10, 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" 
+rule "#13900 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 11, c2 == 8, 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" 
+rule "#13906 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 11, c2 == 2, 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" 
+rule "#13909 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 9, 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" 
+rule "#13910 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, c3 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1224 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13913 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)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 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" 
+rule "#13915 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13916 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 10, c3 == 1, c5 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13918 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 13, 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" 
+rule "#13920 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 11, 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" 
+rule "#13921 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 10, 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" 
+rule "#13922 poker_hand = 6 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 9, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
 end
 
-rule "#1231 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13923 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 > 2.0, c2 <= 3.5, c4 <= 4.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#1237 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#13931 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 9, c1 == 4, 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" 
+rule "#13937 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13939 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13942 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 13, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#13945 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 11, 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" 
+rule "#13946 poker_hand = 4 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#13948 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13953 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13957 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 6, c1 == 6, 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" 
+rule "#13963 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 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" 
+rule "#13965 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 12, c3 == 3, 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" 
+rule "#13972 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 == 2, c4 <= 11.5, c3 <= 11.0, c5 <= 11.0, c1 <= 4.5, c2 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 11, c1 == 13, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#13979 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 11, c1 == 13, c3 == 2, 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" 
+rule "#13983 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13985 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 11, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13986 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 11, c1 == 7, 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" 
+rule "#13991 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13992 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13994 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 10, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13995 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 10, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14000 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14002 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 10, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14005 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 10, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14006 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 9, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#14011 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 9, c1 == 8, 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" 
+rule "#14013 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 9, c1 == 6, 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" 
+rule "#14014 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14015 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1254 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14017 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 9, c1 == 2, 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" 
+rule "#14019 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 == 1, c2 > 1.5, c1 <= 8.5, c4 <= 1.0, c3 <= 8, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 8, s1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#14024 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 7, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14027 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 7, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14028 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 7, 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" 
+rule "#14029 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 7, c3 == 7, 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" 
+rule "#14030 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 7, 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" 
+rule "#14032 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 7, c3 == 4, 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" 
+rule "#14033 poker_hand = 5 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 7, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#14035 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 7, c3 == 1, 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" 
+rule "#14043 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 6, c1 == 6, 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" 
+rule "#14044 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 6, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14046 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 6, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14053 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 5, c1 == 9, 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" 
+rule "#14054 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 5, c1 == 8, 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" 
+rule "#14057 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 5, c1 == 7, c3 == 11, 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" 
+rule "#14061 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 5, c1 == 7, c3 == 7, 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" 
+rule "#14068 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 5, c1 == 6, 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" 
+rule "#14071 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 5, c1 == 3, 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" 
+rule "#14072 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 5, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1279 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14073 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 5, c1 == 1, 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" 
+rule "#14075 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 4, c3 == 12, 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" 
+rule "#14076 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14077 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 4, c3 == 9, 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" 
+rule "#14079 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 4, c3 == 8, 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" 
+rule "#14082 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 4, c3 == 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" 
+rule "#14083 poker_hand = 2 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 4, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#1288 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14084 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, c2 <= 12.5, c3 <= 3.0, c1 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 4, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1289 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14085 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, c2 <= 12.5, c3 > 3.0, c1 <= 3.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 4, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14087 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#14088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 12, 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" 
+rule "#14091 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 11, c1 == 11, 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" 
+rule "#14096 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 11, c1 == 6, 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" 
+rule "#14102 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 10, 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" 
+rule "#14105 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 7, c1 == 13, 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" 
+rule "#14106 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 7, c1 == 12, 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" 
+rule "#14107 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, c5 <= 4.0, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14118 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14120 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 4, 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" 
+rule "#14122 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, c5 > 4.0, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 3, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14125 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14127 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 11, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14128 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 11, c3 == 11, 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" 
+rule "#14139 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 10, 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" 
+rule "#14142 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 7, 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" 
+rule "#14144 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 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" 
+rule "#14147 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 2, 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" 
+rule "#14148 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 2, c1 == 1, 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" 
+rule "#14153 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 1, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14156 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 1, c3 == 6, 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" 
+rule "#14158 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)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 1, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14159 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, c1 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 13, c2 == 1, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14162 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 13, 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" 
+rule "#14164 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#14178 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 11, c3 == 11, 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" 
+rule "#14185 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 <= 7.5, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 11, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14198 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 7, c3 == 7, 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" 
+rule "#14199 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 7, c3 == 6, 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" 
+rule "#14206 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 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14208 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 4, c3 == 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" 
+rule "#14210 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 4, c3 == 10, 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" 
+rule "#14214 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, c3 > 1.0, c4 > 11.5, c1 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 4, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14221 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14230 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 12, c3 == 6, 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" 
+rule "#14231 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 12, c3 == 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" 
+rule "#14233 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 12, c3 == 3, 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" 
+rule "#14234 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 12, c3 == 2, 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" 
+rule "#14239 poker_hand = 4 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 11, c1 == 13, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#14241 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 11, c1 == 13, c3 == 8, 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" 
+rule "#14247 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 11, c1 == 13, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 11, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14251 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 11, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 11, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14255 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14261 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14263 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#14265 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 10, c1 == 12, 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" 
+rule "#14270 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 10, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14272 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14274 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 10, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14280 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 6, 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" 
+rule "#14281 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, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14283 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 10, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 9, c1 == 6, 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" 
+rule "#14294 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 9, c1 == 5, 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" 
+rule "#14295 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, c3 > 12.0, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#14298 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14302 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 8, c3 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14313 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 8, c3 == 11, c1 == 1, 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" 
+rule "#14316 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 8, c3 == 7, 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" 
+rule "#14318 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 8, c3 == 6, 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" 
+rule "#14323 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 8, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14325 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 7, c3 == 12, 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" 
+rule "#14330 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 7, c3 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14331 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 7, c3 == 11, c1 == 8, 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" 
+rule "#14341 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 7, c3 == 8, 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" 
+rule "#14343 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 7, c3 == 6, 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" 
+rule "#14346 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 7, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14347 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 7, c3 == 2, 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" 
+rule "#14353 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 6, c1 == 9, 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" 
+rule "#14355 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, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1356 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14356 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 6, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14357 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 6, c1 == 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" 
+rule "#14360 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14364 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 5, c1 == 11, 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" 
+rule "#14367 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 <= 2.5, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 5, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1362 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14368 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 5, c1 == 7, 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" 
+rule "#14369 poker_hand = 5 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 5, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
 end
 
-rule "#1364 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14370 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 5, c1 == 5, 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" 
+rule "#14371 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 5, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14374 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14377 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 4, c1 == 11, 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" 
+rule "#14380 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 4, c1 == 8, 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" 
+rule "#14381 poker_hand = 5 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#14386 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 4, c1 == 5, c3 == 10, 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" 
+rule "#14387 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 4, c1 == 5, c3 == 9, 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" 
+rule "#14396 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14400 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 3, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14404 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 3, c1 == 9, 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" 
+rule "#14409 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, c5 > 6.5, c3 <= 2.5, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 3, c1 == 5, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14419 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 3, c1 == 5, c3 == 2, 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" 
+rule "#14422 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, c5 > 6.5, c3 <= 2.5, c1 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 3, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1377 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14423 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 3, c1 == 2, 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" 
+rule "#14428 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 10, 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" 
+rule "#14429 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, c1 > 10.0, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14430 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 8, 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" 
+rule "#14435 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14441 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 5, c1 == 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" 
+rule "#14443 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 5, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14445 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 2, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14451 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 12, 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" 
+rule "#14456 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 11, c3 == 9, 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" 
+rule "#14460 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 11, c3 == 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" 
+rule "#14465 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 10, 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" 
+rule "#14466 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1391 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14468 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 7, 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" 
+rule "#14470 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 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" 
+rule "#14474 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)
+		 examples.Poker(c4 == 9, c5 == 12, c2 == 1, c1 == 1, 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" 
+rule "#14477 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14478 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 12, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14485 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 12, c1 == 4, 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" 
+rule "#14493 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 7, 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" 
+rule "#14494 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1400 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14499 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 5, c1 == 9, 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" 
+rule "#14504 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 5, c1 == 4, 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" 
+rule "#14506 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 5, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1403 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14508 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 4, 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" 
+rule "#14509 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 13, c3 == 3, 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" 
+rule "#14513 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 12, c3 == 12, 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" 
+rule "#14514 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 12, c3 == 11, 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" 
+rule "#14517 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 12, c3 == 8, 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" 
+rule "#14523 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 12, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14526 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#14539 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#14540 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 11, 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" 
+rule "#14543 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 8, 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" 
+rule "#14544 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 7, 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" 
+rule "#14547 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1416 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14554 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 3, c3 == 7, 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" 
+rule "#14558 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 3, c3 == 3, 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" 
+rule "#14559 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 3, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1420 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14561 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 10, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1421 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14563 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 9, c3 == 13, 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" 
+rule "#14567 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 9, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#1426 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14570 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 9, c3 == 6, 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" 
+rule "#14576 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1428 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14581 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 12, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14585 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 12, c3 == 5, 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" 
+rule "#14592 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 <= 9.0, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14593 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14596 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 6, c3 == 12, 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" 
+rule "#14600 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 6, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1433 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14609 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 8, c1 == 4, 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" 
+rule "#14617 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 7, c3 == 9, 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" 
+rule "#14618 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 7, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1438 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14620 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 7, c3 == 6, 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" 
+rule "#14621 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 7, c3 == 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" 
+rule "#14623 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 7, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1441 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14626 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 <= 2.5, c5 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1445 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14627 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 12, 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" 
+rule "#14628 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1450 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14629 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14637 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 7, c1 == 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" 
+rule "#14638 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 7, c1 == 7, 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" 
+rule "#14644 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 7, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14646 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14647 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 4, 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" 
+rule "#14648 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 3, 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" 
+rule "#14652 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 6, c3 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14663 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 13, 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" 
+rule "#14664 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 12, 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" 
+rule "#14666 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 10, 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" 
+rule "#14669 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 > 3.5, c2 > 8.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14671 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 5, 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" 
+rule "#14672 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 4, 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" 
+rule "#14673 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 3, 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" 
+rule "#14674 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 2, 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" 
+rule "#14677 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 1, c1 == 11, 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" 
+rule "#14686 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 5, c3 == 1, c1 == 2, 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" 
+rule "#14689 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 4, c1 == 12, 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" 
+rule "#14691 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 4, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1478 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14692 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, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 4, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14693 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 4, c1 == 8, 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" 
+rule "#14699 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 4, c1 == 6, c3 == 9, 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" 
+rule "#14701 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 4, c1 == 6, c3 == 7, 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" 
+rule "#14710 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 4, c1 == 3, 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" 
+rule "#14713 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 3, c3 == 13, 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" 
+rule "#14715 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, c2 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 3, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1484 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14718 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 3, c3 == 8, 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" 
+rule "#14720 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 3, c3 == 6, 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" 
+rule "#14722 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 3, c3 == 4, 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" 
+rule "#14725 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 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 3, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14737 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 13, c1 == 2, 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" 
+rule "#14738 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 13, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14740 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 12, c1 == 12, 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" 
+rule "#14751 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 12, c1 == 1, 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" 
+rule "#14753 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14755 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 8, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14760 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 8, c1 == 8, 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" 
+rule "#14769 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 6, 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" 
+rule "#14770 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1497 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14774 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 2, c3 == 1, 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" 
+rule "#14776 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)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 1, c3 == 12, 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" 
+rule "#14781 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, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 1, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14786 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 1, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14787 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 11, c2 == 1, c3 == 1, 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" 
+rule "#14788 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 13, c3 == 13, 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" 
+rule "#14790 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 13, c3 == 11, 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" 
+rule "#14794 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 13, c3 == 7, 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" 
+rule "#14798 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 13, c3 == 3, 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" 
+rule "#14809 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 12, c3 == 6, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14819 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 12, c3 == 6, c2 == 2, 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" 
+rule "#14820 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 12, c3 == 6, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14821 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 12, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14823 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 12, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14824 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 12, c3 == 2, 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" 
+rule "#14825 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 12, c3 == 1, 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" 
+rule "#14827 poker_hand = 4 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 13, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#14832 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14833 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14839 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14840 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 11, 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" 
+rule "#14842 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14846 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 5, c2 == 13, 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" 
+rule "#14850 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, c1 > 11.5, c2 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 5, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14851 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 5, c2 == 8, 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" 
+rule "#14859 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 > 6.0, c3 > 4.0, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 11, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14865 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 10, c2 == 11, 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" 
+rule "#14866 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 == 4, c4 > 9.0, c2 <= 4.0, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#14867 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 10, c2 == 9, 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" 
+rule "#14868 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 10, c2 == 8, 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" 
+rule "#14869 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 10, c2 == 7, 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" 
+rule "#14870 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 10, c2 == 6, 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" 
+rule "#14873 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 10, c2 == 3, 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" 
+rule "#14874 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 10, c2 == 2, 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" 
+rule "#14877 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14878 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 9, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14881 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 9, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14882 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 9, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#14890 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#14895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 11, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14906 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14910 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 4, 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" 
+rule "#14913 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 8, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14914 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 13, 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" 
+rule "#14915 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 11, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14918 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 11, c2 == 11, 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" 
+rule "#14921 poker_hand = 4 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 11, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#14929 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 10, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14935 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#14937 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 10, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14943 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 8, 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" 
+rule "#14945 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14948 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 3, 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" 
+rule "#14949 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14951 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 6, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14957 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 6, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14959 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 6, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14960 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 6, c3 == 4, 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" 
+rule "#14961 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 6, c3 == 3, 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" 
+rule "#14967 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, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 6, c3 == 2, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14969 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 6, c3 == 2, c2 == 6, 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" 
+rule "#14977 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 5, c3 == 12, 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" 
+rule "#14980 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 == 1, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 5, c3 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1554 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14984 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 == 1, c1 > 1.5, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 5, c3 == 11, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1555 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#14987 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 5, c3 == 11, c2 == 4, 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" 
+rule "#14992 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 5, c3 == 9, 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" 
+rule "#14995 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 <= 10.0, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 5, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#14997 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 5, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15004 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 4, c3 == 10, 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" 
+rule "#15009 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 4, c3 == 5, 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" 
+rule "#15010 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 4, c3 == 4, 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" 
+rule "#15016 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 4, c3 == 3, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1566 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15020 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 4, c3 == 3, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1571 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15025 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15030 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 13, c2 == 9, 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" 
+rule "#15038 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 13, c2 == 1, 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" 
+rule "#15043 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15045 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 6, 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" 
+rule "#15047 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15050 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 3, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15061 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 2, c2 == 3, 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" 
+rule "#15063 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 2, c2 == 1, 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" 
+rule "#15064 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 13, 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" 
+rule "#15065 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 12, 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" 
+rule "#15067 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)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 10, 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" 
+rule "#15070 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 > 3.5, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15072 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15078 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 4, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15085 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 10, c1 == 1, c2 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15091 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 13, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15094 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15096 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15104 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 13, c2 == 3, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15109 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 13, c2 == 3, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15111 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 13, c2 == 3, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 13, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15113 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15116 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 12, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15124 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 12, c2 == 7, c3 == 9, 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" 
+rule "#15131 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 12, c2 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15133 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 12, c2 == 6, 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" 
+rule "#15146 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 12, c2 == 2, c3 == 4, 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" 
+rule "#15151 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, c3 <= 6.0, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15152 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 12, 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" 
+rule "#15154 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 10, 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" 
+rule "#15157 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 7, 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" 
+rule "#15166 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 5, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1601 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15167 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 == 4, c5 > 3.0, c2 > 2.0, c3 > 3.0, c1 <= 1.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 5, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 4, 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" 
+rule "#15174 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1603 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15175 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 == 4, c5 > 3.0, c2 <= 2.0, c1 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 10, c2 == 13, 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" 
+rule "#15182 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 10, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1605 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15184 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 10, c2 == 5, 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" 
+rule "#15185 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 10, c2 == 4, 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" 
+rule "#15186 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 10, c2 == 3, 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" 
+rule "#15188 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 > 1.5, c3 <= 12.5, c4 > 4.5, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 10, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15191 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 9, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#15196 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 9, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15197 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 9, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15198 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15205 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 8, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15206 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15208 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 8, c2 == 7, 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" 
+rule "#15212 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 == 3, c1 > 2.0, c2 > 1.5, c3 > 12.5, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 8, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#1611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15213 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 > 1.5, c3 > 12.5, c4 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 8, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15215 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 7, c2 == 13, 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" 
+rule "#15216 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 7, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 7, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15218 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 7, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15220 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 7, c2 == 8, 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" 
+rule "#15224 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 7, c2 == 4, 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" 
+rule "#15225 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 7, c2 == 3, 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" 
+rule "#15234 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 6, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1617 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15236 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, c4 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 6, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1618 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15242 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, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 6, c2 == 4, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15246 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 6, c2 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 6, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15257 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 5, c3 == 9, 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" 
+rule "#15258 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 5, c3 == 8, 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" 
+rule "#15261 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 == 2, c1 > 2.5, c3 <= 10.0, c2 > 3.0, c5 <= 4.5, c4 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 5, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#1626 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15263 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 5, c3 == 3, 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" 
+rule "#15265 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 5, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1629 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15268 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 == 1, c5 <= 8.5, c1 <= 2.0, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15271 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 4, c3 == 8, 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" 
+rule "#15272 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 4, c3 == 7, 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" 
+rule "#15275 poker_hand = 6 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)
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 4, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#15276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 4, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15280 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 2, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15282 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15285 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 2, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15286 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15290 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 2, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15292 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 2, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15295 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 1, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15298 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15302 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15305 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 9, c1 == 1, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 13, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15314 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 13, c3 == 5, 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" 
+rule "#15317 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 13, c3 == 2, 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" 
+rule "#15321 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15323 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 12, c3 == 10, c2 == 12, 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" 
+rule "#15329 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 > 8.5, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 12, c3 == 10, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 12, c3 == 7, 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" 
+rule "#15338 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 12, c3 == 6, 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" 
+rule "#15343 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15346 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 11, c2 == 11, 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" 
+rule "#15347 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 11, c2 == 10, 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" 
+rule "#15349 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 11, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1648 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15352 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 11, c2 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15357 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 11, c2 == 7, c3 == 6, 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" 
+rule "#15366 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 11, c2 == 3, 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" 
+rule "#15368 poker_hand = 5 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
 end
 
-rule "#1656 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15369 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 13, c3 == 13, 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" 
+rule "#15371 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 13, c3 == 11, 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" 
+rule "#15382 poker_hand = 5 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#15385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 11, c3 == 11, 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" 
+rule "#15391 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 11, c3 == 5, 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" 
+rule "#15397 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 10, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15399 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 10, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15410 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15411 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 7, 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" 
+rule "#15412 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 6, 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" 
+rule "#15414 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 4, 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" 
+rule "#15415 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 == 4, c5 > 1.0, c3 > 2.0, c4 <= 12.0, c2 <= 3.0, c1 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 10, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15418 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 9, c2 == 13, 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" 
+rule "#15420 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 9, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1672 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15422 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 9, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15424 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 9, c2 == 7, 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" 
+rule "#15429 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 9, c2 == 2, 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" 
+rule "#15433 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 8, c3 == 11, 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" 
+rule "#15436 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15440 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 8, c3 == 4, 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" 
+rule "#15442 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 8, c3 == 2, 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" 
+rule "#15443 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 == 3, c2 > 12.5, c1 <= 8.5, c3 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 8, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15444 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 13, c3 == 13, 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" 
+rule "#15453 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 13, c3 == 4, 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" 
+rule "#15454 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 13, c3 == 3, 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" 
+rule "#15457 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 12, 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" 
+rule "#15466 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 3, 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" 
+rule "#15467 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 <= 3.0, c4 <= 1, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15468 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 > 3.0, c4 > 9.0, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 7, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1693 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15470 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15471 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15481 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 7, c2 == 7, 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" 
+rule "#15486 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 7, c2 == 2, 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" 
+rule "#15489 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15495 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 3, c2 == 9, 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" 
+rule "#15503 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 3, c2 == 1, 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" 
+rule "#15510 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15514 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 2, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15515 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 2, c2 == 2, 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" 
+rule "#15517 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 6, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15522 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15529 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 13, c2 == 2, 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" 
+rule "#15535 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 8, 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" 
+rule "#15540 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 7, c2 == 9, 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" 
+rule "#15543 poker_hand = 4 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 7, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#15550 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 5, 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" 
+rule "#15553 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 5, c3 == 2, 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" 
+rule "#15556 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 4, c2 == 10, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 4, c2 == 10, c3 == 9, 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" 
+rule "#15575 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 4, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15578 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 4, c2 == 2, 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" 
+rule "#15579 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, c1 > 6.5, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 4, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15580 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 3, c2 == 13, 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" 
+rule "#15581 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 3, c2 == 12, 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" 
+rule "#15583 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 3, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15586 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15599 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 3, c2 == 1, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 3, c2 == 1, c3 == 1, 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" 
+rule "#15605 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 13, 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" 
+rule "#15606 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 12, 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" 
+rule "#15609 poker_hand = 2 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15612 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 6, 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" 
+rule "#15613 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15615 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15616 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 2, 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" 
+rule "#15617 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 2, c2 == 1, 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" 
+rule "#15619 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 1, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15621 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 1, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15622 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 1, c2 == 9, 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" 
+rule "#15624 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 1, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15628 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 1, c2 == 4, c3 == 12, 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" 
+rule "#15639 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 1, c2 == 4, c3 == 1, 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" 
+rule "#15640 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 1, c2 == 3, 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" 
+rule "#15642 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 8, c1 == 1, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15646 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15647 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 13, c2 == 9, 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" 
+rule "#15648 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 13, c2 == 8, 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" 
+rule "#15651 poker_hand = 5 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 13, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#15652 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 13, c2 == 4, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15655 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 13, c2 == 4, c1 == 10, 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" 
+rule "#15666 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 13, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15670 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 12, c2 == 11, 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" 
+rule "#15672 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 12, c2 == 9, 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" 
+rule "#15677 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 12, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15680 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 12, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 10, c1 == 13, 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" 
+rule "#15683 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, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 10, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15684 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 10, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15686 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 10, c1 == 9, 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" 
+rule "#15690 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 10, c1 == 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" 
+rule "#15692 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 10, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15694 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 10, c1 == 1, 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" 
+rule "#15696 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 8, c2 == 13, 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" 
+rule "#15697 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 8, c2 == 8, 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" 
+rule "#15708 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 8, c2 == 3, c1 == 11, 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" 
+rule "#15711 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 8, c2 == 3, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15720 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 7, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15727 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 7, c1 == 7, 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" 
+rule "#15731 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 7, c1 == 3, 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" 
+rule "#15735 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 6, c2 == 12, 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" 
+rule "#15737 poker_hand = 4 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 6, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#15744 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 6, c2 == 3, 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" 
+rule "#15755 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 5, c2 == 13, c1 == 5, 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" 
+rule "#15756 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, c5 > 2.5, c2 > 9.5, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 5, c2 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15762 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15763 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 5, c2 == 9, 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" 
+rule "#15765 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 5, c2 == 7, 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" 
+rule "#15767 poker_hand = 2 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 5, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#1764 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15775 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 4, c1 == 10, 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" 
+rule "#15777 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 4, c1 == 8, 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" 
+rule "#15778 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, c4 > 2.0, c1 <= 12.5, c2 <= 10.0, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15780 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15783 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 4, c1 == 2, 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" 
+rule "#15784 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 4, c1 == 1, 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" 
+rule "#15786 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 3, c2 == 12, 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" 
+rule "#15791 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15792 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 3, c2 == 6, 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" 
+rule "#15793 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15794 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15802 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 2, c2 == 9, 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" 
+rule "#15803 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 2, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15806 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15808 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 2, c2 == 3, 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" 
+rule "#15810 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, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 2, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15811 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 1, c1 == 13, 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" 
+rule "#15813 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 1, c1 == 11, 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" 
+rule "#15814 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1785 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15816 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)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 1, c1 == 8, 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" 
+rule "#15818 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 7, c3 == 1, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15824 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15826 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 11, 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" 
+rule "#15829 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 8, 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" 
+rule "#15830 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, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15831 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 6, 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" 
+rule "#15834 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 2, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15841 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 13, c3 == 2, c1 == 7, 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" 
+rule "#15849 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15857 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 13, c3 == 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" 
+rule "#15859 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, c3 <= 6.5, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 13, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15862 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15867 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 7, 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" 
+rule "#15868 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 6, 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" 
+rule "#15869 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15873 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 12, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15878 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 9, 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" 
+rule "#15886 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 8, c3 == 6, 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" 
+rule "#15890 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, c1 > 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 8, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1810 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15892 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 4, 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" 
+rule "#15896 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 3, 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" 
+rule "#15897 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 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15903 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 10, c1 == 9, 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" 
+rule "#15913 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, c1 > 4.5, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 10, c1 == 4, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 10, c1 == 4, c3 == 6, 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" 
+rule "#15931 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 10, c1 == 3, c3 == 3, 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" 
+rule "#15932 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, c1 > 4.5, c4 <= 2.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 10, c1 == 3, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#15936 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 13, c3 == 13, 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" 
+rule "#15943 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#15946 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 13, c3 == 3, 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" 
+rule "#15949 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 <= 1.5, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1822 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15952 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 == 1, c1 > 2.0, c5 <= 11.0, c2 <= 11.0, c3 <= 1.5, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#1825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15958 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 3, c3 == 13, 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" 
+rule "#15962 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 == 1, c1 > 2.0, c5 <= 11.0, c2 > 11.0, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 3, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#15967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 3, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15972 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15974 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 8, c3 == 12, 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" 
+rule "#15975 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 8, c3 == 11, 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" 
+rule "#15978 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 8, c3 == 8, 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" 
+rule "#15979 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 8, c3 == 7, 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" 
+rule "#15982 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 8, c3 == 4, 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" 
+rule "#15989 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 7, c1 == 10, 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" 
+rule "#15992 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 7, c1 == 7, 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" 
+rule "#15994 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1837 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#15995 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 7, c1 == 4, 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" 
+rule "#15997 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 7, c1 == 2, 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" 
+rule "#15998 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 7, c1 == 1, 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" 
+rule "#15999 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 6, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16010 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 6, c1 == 2, 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" 
+rule "#16011 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 6, c1 == 1, 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" 
+rule "#16012 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 5, c1 == 13, 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" 
+rule "#16014 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 5, c1 == 11, 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" 
+rule "#16015 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, c2 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1849 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16021 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 5, c1 == 4, 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" 
+rule "#16026 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 5, c1 == 2, c3 == 10, 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" 
+rule "#16027 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, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 5, c1 == 2, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16029 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 5, c1 == 2, c3 == 7, 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" 
+rule "#16036 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 5, c1 == 1, 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" 
+rule "#16043 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 4, c3 == 7, 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" 
+rule "#16044 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 4, c3 == 6, 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" 
+rule "#16051 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 4, c3 == 5, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16052 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 4, c3 == 5, c1 == 6, 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" 
+rule "#16058 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 4, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16070 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 3, s4 == 1, c3 == 8, 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" 
+rule "#16073 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 3, s4 == 1, c3 == 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" 
+rule "#16074 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 3, s4 == 1, c3 == 4, 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" 
+rule "#16075 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, c3 > 10.0, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 3, s4 == 1, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16079 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16081 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 10, 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" 
+rule "#16082 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 9, 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" 
+rule "#16084 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 7, 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" 
+rule "#16085 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 <= 7.5, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16087 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 5, c3 == 12, 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" 
+rule "#16088 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, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 5, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16090 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 5, c3 == 9, 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" 
+rule "#16099 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1881 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16100 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 3, 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" 
+rule "#16101 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 2, 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" 
+rule "#16102 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 == 2, c2 <= 3.0, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 2, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16103 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 1, c1 == 13, 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" 
+rule "#16104 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, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 1, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1888 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16105 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 1, c1 == 11, 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" 
+rule "#16107 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 1, c1 == 9, 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" 
+rule "#16109 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 1, c1 == 7, 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" 
+rule "#16111 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)
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 1, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16114 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 6, c2 == 1, c1 == 2, 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" 
+rule "#16117 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 13, c3 == 12, 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" 
+rule "#16120 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 == 1, c2 <= 2.0, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 13, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 12, c3 == 10, 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" 
+rule "#16137 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 12, c3 == 5, 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" 
+rule "#16138 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 12, c3 == 4, 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" 
+rule "#16139 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 12, c3 == 3, 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" 
+rule "#16140 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 12, c3 == 2, 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" 
+rule "#16142 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, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16143 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16144 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 9, 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" 
+rule "#16145 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, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16147 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16149 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16150 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 13, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16156 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 12, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16165 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 12, c3 == 9, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 12, c3 == 9, c1 == 2, 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" 
+rule "#16170 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 12, c3 == 8, 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" 
+rule "#16171 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 12, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 12, c3 == 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" 
+rule "#16175 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 12, c3 == 1, 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" 
+rule "#16181 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 11, 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" 
+rule "#16185 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 11, c3 == 6, 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" 
+rule "#16186 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 11, c3 == 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" 
+rule "#16187 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 11, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1918 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16189 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 11, c3 == 2, 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" 
+rule "#16195 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 10, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16196 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 10, c3 == 8, 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" 
+rule "#16198 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 10, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16199 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 10, c3 == 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" 
+rule "#16200 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 10, c3 == 4, 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" 
+rule "#16202 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 10, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1924 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16203 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 10, c3 == 1, 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" 
+rule "#16205 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 9, c1 == 12, 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" 
+rule "#16211 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 9, c1 == 6, 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" 
+rule "#16212 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 == 2, c4 > 4.0, c1 > 3.0, c2 > 6.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16214 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 9, c1 == 3, 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" 
+rule "#16217 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 8, c3 == 13, 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" 
+rule "#16220 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 8, c3 == 10, 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" 
+rule "#16221 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 8, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16225 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 8, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16226 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 8, c3 == 4, 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" 
+rule "#16232 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 7, c3 == 11, 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" 
+rule "#16233 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 == 4, c3 <= 8.5, c1 <= 7.5, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 7, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16234 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 7, c3 == 9, 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" 
+rule "#16235 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 7, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16236 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 7, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16237 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 7, c3 == 6, 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" 
+rule "#16240 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 7, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16244 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 6, c3 == 12, 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" 
+rule "#16251 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 6, c3 == 8, c1 == 10, 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" 
+rule "#16256 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 6, c3 == 8, c1 == 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" 
+rule "#16269 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 6, c3 == 7, c1 == 5, 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" 
+rule "#16270 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 6, c3 == 7, c1 == 4, 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" 
+rule "#16274 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 6, c3 == 6, 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" 
+rule "#16277 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 6, c3 == 3, 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" 
+rule "#16281 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16285 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16286 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 7, 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" 
+rule "#16298 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, c4 <= 8.5, c1 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 2, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16299 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 2, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 1, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16316 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 5, c3 == 1, c1 == 1, 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" 
+rule "#16317 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 13, 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" 
+rule "#16318 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16321 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 11, c1 == 11, 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" 
+rule "#16325 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 11, c1 == 7, 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" 
+rule "#16332 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 > 6.5, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#1971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16334 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16339 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 8, c1 == 8, 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" 
+rule "#16344 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 8, c1 == 3, 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" 
+rule "#16350 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 > 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16355 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 6, c1 == 6, 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" 
+rule "#16356 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 6, c1 == 5, 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" 
+rule "#16361 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16366 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 3, c3 == 13, 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" 
+rule "#16367 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16368 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 3, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 3, c3 == 5, 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" 
+rule "#16376 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 == 4, c3 <= 9.0, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 3, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16381 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 2, c1 == 11, 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" 
+rule "#16382 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 2, c1 == 10, 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" 
+rule "#16383 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 2, c1 == 9, 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" 
+rule "#16385 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 2, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1985 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16387 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 2, c1 == 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" 
+rule "#16388 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 2, c1 == 4, 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" 
+rule "#16389 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 2, c1 == 3, 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" 
+rule "#16390 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 2, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16395 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 12, c1 == 11, 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" 
+rule "#16405 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)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#1991 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16407 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16410 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16411 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16413 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16414 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 5, c2 == 1, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16422 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 13, c2 == 13, c3 == 8, 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" 
+rule "#16426 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 == 3, c2 <= 11.0, c4 > 2.5, c1 <= 12.5, c3 > 11.5, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 13, c2 == 13, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16430 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 13, c2 == 12, 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" 
+rule "#16431 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 13, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16432 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16436 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 13, c2 == 6, 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" 
+rule "#16438 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 13, c2 == 4, 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" 
+rule "#16441 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 13, c2 == 1, 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" 
+rule "#16449 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 12, s1 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16453 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 12, s1 == 3, c2 == 3, 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" 
+rule "#16454 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 12, s1 == 3, c2 == 2, 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" 
+rule "#16456 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 12, s1 == 2, 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" 
+rule "#16458 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 11, c2 == 11, 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" 
+rule "#16462 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, c4 > 1.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 11, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16465 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 11, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16467 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 11, c2 == 4, 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" 
+rule "#16472 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 10, c3 == 12, 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" 
+rule "#16474 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, c4 > 1.0, c2 > 3.0, c1 > 9.0, c5 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16484 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 10, c3 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16485 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 10, c3 == 9, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16492 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 10, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16493 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 10, c3 == 3, 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" 
+rule "#16494 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 10, c3 == 2, 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" 
+rule "#16496 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 9, c2 == 13, 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" 
+rule "#16511 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 9, c2 == 5, c3 == 6, 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" 
+rule "#16513 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, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 9, c2 == 5, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16517 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16520 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 9, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16522 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 8, c3 == 12, 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" 
+rule "#16535 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 7, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16538 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 7, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16540 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 7, c2 == 7, 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" 
+rule "#16542 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 7, c2 == 5, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16551 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 7, c2 == 5, c3 == 4, 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" 
+rule "#16555 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 7, c2 == 4, 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" 
+rule "#16556 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16557 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 7, c2 == 2, 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" 
+rule "#16558 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 7, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16559 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 13, 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" 
+rule "#16561 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 11, c2 == 13, 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" 
+rule "#16562 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 11, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16563 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 11, c2 == 11, 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" 
+rule "#16567 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, c1 > 1.0, c2 <= 10.5, c3 > 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 11, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16579 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 5, 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" 
+rule "#16580 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 4, 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" 
+rule "#16581 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2026 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16582 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, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 6, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2030 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16584 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 13, 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" 
+rule "#16585 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 12, 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" 
+rule "#16586 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16587 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16588 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16589 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 8, 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" 
+rule "#16591 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 6, 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" 
+rule "#16592 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16593 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 1, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16606 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 5, c2 == 1, c3 == 3, 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" 
+rule "#16610 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 12, 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" 
+rule "#16611 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16612 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 10, 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" 
+rule "#16615 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16616 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16617 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16618 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16621 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16625 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 3, c2 == 10, 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" 
+rule "#16636 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 12, 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" 
+rule "#16637 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 > 7.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16641 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 9, c3 == 11, 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" 
+rule "#16643 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 9, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16653 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16655 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16658 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 2, 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" 
+rule "#16665 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 1, c3 == 7, 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" 
+rule "#16668 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 2, c2 == 1, c3 == 4, 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" 
+rule "#16673 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 12, 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" 
+rule "#16676 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16678 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16682 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 5, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16688 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 5, c3 == 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" 
+rule "#16694 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 3, 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" 
+rule "#16695 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 2, 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" 
+rule "#16696 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)
+		 examples.Poker(c4 == 9, c5 == 4, c1 == 1, c2 == 1, 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" 
+rule "#16697 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 13, 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" 
+rule "#16699 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 11, 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" 
+rule "#16701 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 9, 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" 
+rule "#16702 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16704 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 6, 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" 
+rule "#16705 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16711 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 4, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16715 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16717 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16719 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 3, 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" 
+rule "#16721 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 13, c2 == 1, 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" 
+rule "#16723 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 12, c3 == 12, 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" 
+rule "#16724 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16725 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 12, c3 == 10, 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" 
+rule "#16727 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 12, c3 == 8, 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" 
+rule "#16730 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 12, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2079 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16733 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 12, c3 == 2, 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" 
+rule "#16734 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 > 4.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16736 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 10, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16738 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 10, c3 == 11, 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" 
+rule "#16741 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 10, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16744 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 10, c3 == 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" 
+rule "#16747 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 10, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16755 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 9, c2 == 7, 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" 
+rule "#16756 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 9, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16758 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16759 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 9, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16765 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 8, c3 == 10, 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" 
+rule "#16768 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 8, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#16771 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 8, c3 == 4, 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" 
+rule "#16773 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 8, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16775 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 7, c2 == 13, 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" 
+rule "#16776 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 7, c2 == 12, 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" 
+rule "#16777 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 7, c2 == 11, 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" 
+rule "#16778 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 7, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16783 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 7, c2 == 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" 
+rule "#16786 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 7, c2 == 2, 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" 
+rule "#16788 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 6, c3 == 13, 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" 
+rule "#16789 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 6, c3 == 12, 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" 
+rule "#16793 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 6, c3 == 8, 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" 
+rule "#16798 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 6, c3 == 7, c2 == 9, 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" 
+rule "#16803 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 6, c3 == 7, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16807 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 6, c3 == 6, 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" 
+rule "#16810 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 6, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16814 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 5, s2 == 3, 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" 
+rule "#16817 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)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 4, s2 == 4, 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" 
+rule "#16818 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 4, s2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16838 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 2, c3 == 3, c2 == 7, 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" 
+rule "#16842 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 == 1, c5 > 4.0, c3 <= 11.0, c4 > 2.5, c1 > 1.0, c2 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 2, c3 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#16846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 2, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16848 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 1, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16850 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 1, c3 == 10, 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" 
+rule "#16851 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 == 1, c5 > 4.0, c3 <= 11.0, c4 > 2.5, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 1, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 1, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16859 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 3, c1 == 1, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16861 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 12, 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" 
+rule "#16862 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 11, 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" 
+rule "#16864 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 > 3.0, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16877 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 7, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16878 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 7, c3 == 1, 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" 
+rule "#16879 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 6, 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" 
+rule "#16880 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16884 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16885 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16887 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 11, 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" 
+rule "#16888 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16890 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16899 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 3, c3 == 9, 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" 
+rule "#16902 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 3, c3 == 6, 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" 
+rule "#16908 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 == 4, c3 > 1.0, c1 > 4.5, c2 > 12.0, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#16916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 1, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16918 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 1, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16920 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 12, c2 == 1, c3 == 2, 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" 
+rule "#16922 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 13, 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" 
+rule "#16925 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, c1 <= 8.5, c5 <= 2.0, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16935 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 12, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16936 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 11, 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" 
+rule "#16941 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 6, 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" 
+rule "#16944 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 4, c3 == 12, 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" 
+rule "#16946 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 4, c3 == 10, 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" 
+rule "#16947 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 4, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16957 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 11, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16959 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 10, c2 == 13, 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" 
+rule "#16969 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 10, c2 == 12, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 10, c2 == 12, c3 == 2, 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" 
+rule "#16972 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 == 2, c5 <= 6.5, c2 > 3.5, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 10, c2 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16977 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 10, c2 == 11, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16980 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 10, c2 == 11, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16989 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#16993 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 10, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17002 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 10, c2 == 10, 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" 
+rule "#17005 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 10, c2 == 7, 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" 
+rule "#17006 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 10, c2 == 6, 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" 
+rule "#17012 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 == 2, c5 > 6.5, c2 <= 2.5, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#17013 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 8, 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" 
+rule "#17014 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 7, 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" 
+rule "#17016 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 5, 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" 
+rule "#17023 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 4, c2 == 7, 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" 
+rule "#17026 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 == 1, c1 > 1.0, c2 > 7.0, c4 > 2.0, c3 <= 1.0, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17030 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 9, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17038 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 8, c2 == 8, 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" 
+rule "#17039 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 8, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2153 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17042 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 8, c2 == 4, 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" 
+rule "#17043 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 8, c2 == 3, 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" 
+rule "#17044 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, c5 <= 7.0, c3 <= 6.5, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 8, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2159 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17047 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17049 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17050 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17058 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 7, c3 == 7, 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" 
+rule "#17064 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 7, c3 == 1, 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" 
+rule "#17072 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 4, c3 == 8, 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" 
+rule "#17073 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 4, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17081 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17082 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 7, c2 == 1, 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" 
+rule "#17087 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, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17089 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 6, c2 == 7, 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" 
+rule "#17093 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 6, c2 == 3, 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" 
+rule "#17094 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 6, c2 == 2, 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" 
+rule "#17098 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, c1 > 2.5, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2171 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17103 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 10, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17105 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 10, c3 == 7, 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" 
+rule "#17115 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, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2175 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17116 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 5, 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" 
+rule "#17117 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 4, 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" 
+rule "#17119 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 5, c2 == 2, 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" 
+rule "#17121 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 13, 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" 
+rule "#17122 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2181 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17125 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, c1 > 10.0, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 8, c2 == 7, 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" 
+rule "#17135 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 8, c2 == 4, 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" 
+rule "#17147 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2185 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17148 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 6, c2 == 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" 
+rule "#17150 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 6, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2189 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17159 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 5, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2190 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17160 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 5, c2 == 6, 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" 
+rule "#17161 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 5, c2 == 5, 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" 
+rule "#17167 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 3, 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" 
+rule "#17169 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 4, c3 == 1, 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" 
+rule "#17170 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 3, c3 == 13, 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" 
+rule "#17173 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 3, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2202 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17175 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, c4 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 3, c3 == 7, 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" 
+rule "#17178 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, c4 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 3, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2204 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17181 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 3, c3 == 2, 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" 
+rule "#17182 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, c4 <= 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 3, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 2, c3 == 12, 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" 
+rule "#17186 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17189 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 2, c3 == 7, 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" 
+rule "#17193 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 2, c3 == 3, 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" 
+rule "#17194 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, c3 <= 11.5, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 2, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#17196 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 13, c2 == 13, 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" 
+rule "#17198 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 13, c2 == 11, 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" 
+rule "#17205 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 13, c2 == 4, 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" 
+rule "#17210 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, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2215 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17211 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, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17213 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 8, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 8, c2 == 9, 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" 
+rule "#17222 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 8, c2 == 4, 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" 
+rule "#17225 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 8, c2 == 1, 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" 
+rule "#17226 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 7, 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" 
+rule "#17230 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2229 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17231 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)
+		 examples.Poker(c4 == 9, c5 == 2, c1 == 1, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17235 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 13, c3 == 11, 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" 
+rule "#17237 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 13, c3 == 9, 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" 
+rule "#17239 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 13, c3 == 7, 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" 
+rule "#17241 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 13, c3 == 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" 
+rule "#17242 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 13, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2237 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17244 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 13, c3 == 2, 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" 
+rule "#17247 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 12, 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" 
+rule "#17248 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 11, 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" 
+rule "#17249 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, c5 <= 12.5, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2242 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17253 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, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 3, c3 == 12, 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" 
+rule "#17259 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 3, c3 == 10, 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" 
+rule "#17269 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 2, 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" 
+rule "#17271 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 == 4, c1 > 12.0, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 1, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 12, c2 == 1, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17283 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 13, 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" 
+rule "#17284 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, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17285 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 11, 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" 
+rule "#17286 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17287 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 9, 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" 
+rule "#17295 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 7, c2 == 7, 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" 
+rule "#17297 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 7, c2 == 5, 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" 
+rule "#17303 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17307 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 11, c3 == 1, 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" 
+rule "#17308 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 13, c2 == 13, 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" 
+rule "#17312 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 13, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17319 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 13, c2 == 2, 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" 
+rule "#17321 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, 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" 
+rule "#17322 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2259 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17330 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 3, 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" 
+rule "#17334 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 2, c2 == 10, 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" 
+rule "#17337 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 2, c2 == 7, 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" 
+rule "#17344 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 == 1, c5 > 7.0, c3 <= 2.5, c1 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 10, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#2264 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17345 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 9, c3 == 13, 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" 
+rule "#17348 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 9, c3 == 10, 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" 
+rule "#17349 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 == 1, c5 > 7.0, c3 > 2.5, c4 <= 11.5, c1 <= 5.5, c2 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 9, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#17355 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 9, c3 == 3, 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" 
+rule "#17365 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, c4 <= 12.5, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 9, c3 == 2, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2274 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17368 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 9, c3 == 2, c2 == 1, 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" 
+rule "#17370 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, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17373 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 10, 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" 
+rule "#17375 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, c5 > 3.0, c1 > 3.5, c2 > 2.0, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2279 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17378 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 5, 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" 
+rule "#17380 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 <= 12.5, c4 <= 2.0, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17382 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 2, c2 == 12, 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" 
+rule "#17384 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 2, c2 == 10, 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" 
+rule "#17393 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 8, c3 == 2, c2 == 1, 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" 
+rule "#17395 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 7, c2 == 13, 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" 
+rule "#17397 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17400 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 7, c2 == 8, 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" 
+rule "#17401 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 7, c2 == 7, 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" 
+rule "#17404 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, c5 > 4.5, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 7, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17407 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 7, c2 == 1, 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" 
+rule "#17410 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 6, c2 == 11, 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" 
+rule "#17412 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 6, c2 == 9, 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" 
+rule "#17418 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 6, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17419 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 6, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17420 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 6, c2 == 1, 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" 
+rule "#17425 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17426 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 12, 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" 
+rule "#17428 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 10, 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" 
+rule "#17430 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2305 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17431 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 7, 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" 
+rule "#17432 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 6, 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" 
+rule "#17433 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17434 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 4, 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" 
+rule "#17435 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 3, 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" 
+rule "#17442 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 2, c2 == 7, 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" 
+rule "#17447 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 2, c2 == 2, 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" 
+rule "#17449 poker_hand = 3 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#2318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17450 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 3, c2 == 13, 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" 
+rule "#17451 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 3, c2 == 12, 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" 
+rule "#17452 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 3, c2 == 11, 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" 
+rule "#17453 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)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 3, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17455 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17456 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17457 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 3, c2 == 3, 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" 
+rule "#17463 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 12, 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" 
+rule "#17465 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17468 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 8, 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" 
+rule "#17471 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17475 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 7, c3 == 7, 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" 
+rule "#17480 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, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17482 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 6, 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" 
+rule "#17484 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17486 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17488 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 13, 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" 
+rule "#17489 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, c3 <= 3.0, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 11, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17504 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17510 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17512 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 9, c5 == 1, c1 == 1, c2 == 1, 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" 
+rule "#17513 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 13, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#17515 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 13, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17517 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 13, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17526 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 13, c5 == 6, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17527 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 13, c5 == 6, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17538 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17539 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17541 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 10, 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" 
+rule "#17547 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 7, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17550 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 7, c5 == 7, 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" 
+rule "#17555 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 7, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17561 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 2, 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" 
+rule "#17562 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 12, c2 == 1, 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" 
+rule "#17564 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, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 11, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17570 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 11, c2 == 8, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17578 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 11, c2 == 8, c5 == 3, 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" 
+rule "#17582 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 11, c2 == 6, 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" 
+rule "#17584 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 11, c2 == 4, 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" 
+rule "#17586 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 11, c2 == 2, 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" 
+rule "#17588 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 10, s2 == 4, 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" 
+rule "#17593 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 == 3, c5 > 8.0, c1 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 10, s2 == 2, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17594 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 10, s2 == 2, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17603 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 10, s2 == 1, 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" 
+rule "#17604 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 9, c2 == 13, 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" 
+rule "#17608 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 9, c2 == 11, c5 == 11, 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" 
+rule "#17612 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 9, c2 == 11, c5 == 7, 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" 
+rule "#17619 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 9, c2 == 10, 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" 
+rule "#17623 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, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 9, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17626 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 9, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17627 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 9, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17629 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 8, c2 == 13, 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" 
+rule "#17644 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, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 7, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17647 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 7, c5 == 8, 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" 
+rule "#17649 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 7, c5 == 6, 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" 
+rule "#17650 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 7, c5 == 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" 
+rule "#17652 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 7, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17654 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 7, c5 == 1, 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" 
+rule "#17656 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 6, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17657 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 6, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17659 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 6, c2 == 9, 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" 
+rule "#17660 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 6, c2 == 8, 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" 
+rule "#17661 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 6, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17667 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 6, c2 == 1, 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" 
+rule "#17669 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 5, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17671 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17673 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 5, c2 == 8, 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" 
+rule "#17676 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 5, c2 == 5, 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" 
+rule "#17677 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 5, c2 == 4, 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" 
+rule "#17684 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, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 5, c2 == 3, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17686 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 5, c2 == 3, c5 == 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" 
+rule "#17688 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 5, c2 == 3, c5 == 3, 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" 
+rule "#17693 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, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 4, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2371 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17695 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 4, c2 == 11, 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" 
+rule "#17697 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 4, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17707 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 4, c2 == 6, c5 == 6, 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" 
+rule "#17708 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 > 3.0, c3 > 1.5, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 4, c2 == 6, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2377 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17714 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 4, c2 == 4, 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" 
+rule "#17715 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 4, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2380 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17716 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 4, c2 == 2, 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" 
+rule "#17719 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 12, 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" 
+rule "#17721 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, c5 > 3.0, c2 <= 2.5, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17722 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 9, 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" 
+rule "#17723 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, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2390 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17725 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 6, 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" 
+rule "#17727 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 4, c2 == 13, 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" 
+rule "#17738 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 4, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17741 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17742 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 3, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17743 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 13, 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" 
+rule "#17744 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 12, 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" 
+rule "#17745 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 11, 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" 
+rule "#17746 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, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17748 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 8, 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" 
+rule "#17750 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 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" 
+rule "#17754 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 3, c5 == 12, 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" 
+rule "#17758 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 3, c5 == 8, 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" 
+rule "#17767 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 2, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17768 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 13, 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" 
+rule "#17770 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17773 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 10, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17777 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 10, c2 == 1, 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" 
+rule "#17785 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 8, 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" 
+rule "#17786 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 7, 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" 
+rule "#17787 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)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 6, 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" 
+rule "#17788 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, c3 <= 5.0, c5 <= 1.0, c1 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17791 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 4, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17802 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17803 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 13, c3 == 1, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17809 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 13, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 12, c5 == 13, 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" 
+rule "#17822 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, c3 > 5.0, c5 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 12, c5 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17831 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 12, c5 == 11, c2 == 2, 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" 
+rule "#17835 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, c5 > 2.0, c3 > 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 12, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#2419 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17838 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 12, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17839 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 12, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17843 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17845 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 12, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#17855 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 12, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 9, 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" 
+rule "#17860 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 8, 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" 
+rule "#17865 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 6, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17869 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 6, c2 == 6, 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" 
+rule "#17871 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 6, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 11, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17880 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17882 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17883 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 10, 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" 
+rule "#17884 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 9, 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" 
+rule "#17888 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 == 3, c3 > 3.0, c5 <= 12.0, c1 <= 2.0, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 8, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17892 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 8, c2 == 6, 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" 
+rule "#17898 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 7, 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" 
+rule "#17900 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2432 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17902 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 > 4.5, c1 > 3.0, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 10, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17907 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 11, 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" 
+rule "#17908 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 10, 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" 
+rule "#17910 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 == 2, c3 > 2.0, c4 <= 5.5, c5 <= 10.0, c2 <= 3.0, c1 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17918 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17925 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 7, c2 == 11, 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" 
+rule "#17929 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 7, c2 == 7, 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" 
+rule "#17936 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 6, 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" 
+rule "#17939 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 <= 8.0, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17941 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 9, c5 == 1, 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" 
+rule "#17942 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 8, c2 == 13, 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" 
+rule "#17944 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 8, c2 == 11, 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" 
+rule "#17949 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 8, c2 == 6, 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" 
+rule "#17950 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 8, c2 == 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" 
+rule "#17955 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 == 2, c3 <= 2.0, c1 <= 7.5, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 8, c2 == 1, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#2446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#17957 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 8, c2 == 1, c5 == 10, 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" 
+rule "#17963 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 8, c2 == 1, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17968 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#17969 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 11, 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" 
+rule "#17970 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 10, 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" 
+rule "#17972 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 == 1, c2 <= 10.5, c4 > 8.5, c1 > 4.5, c3 > 1.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17973 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#17974 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 6, 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" 
+rule "#17978 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 2, 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" 
+rule "#17980 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 1, c2 == 12, 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" 
+rule "#17981 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 1, c2 == 11, 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" 
+rule "#17986 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 1, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17989 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 7, c5 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17992 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17993 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 12, 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" 
+rule "#17994 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 11, 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" 
+rule "#17996 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 9, 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" 
+rule "#17997 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 8, 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" 
+rule "#17998 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 7, 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" 
+rule "#18004 poker_hand = 2 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 6, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18010 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 6, c2 == 2, 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" 
+rule "#18011 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 6, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 6, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18025 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 5, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18031 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 5, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18033 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 5, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18041 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 5, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18046 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 4, c2 == 9, 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" 
+rule "#18048 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 4, c2 == 7, 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" 
+rule "#18053 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 4, c2 == 2, 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" 
+rule "#18056 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18057 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 12, 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" 
+rule "#18060 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18061 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 11, c2 == 10, 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" 
+rule "#18071 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 10, 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" 
+rule "#18072 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 9, 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" 
+rule "#18076 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 5, 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" 
+rule "#18077 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)
+		 examples.Poker(c4 == 8, c1 == 12, c3 == 2, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18088 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, c2 <= 9.5, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 12, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18090 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 12, c5 == 6, 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" 
+rule "#18097 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 10, 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" 
+rule "#18098 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2485 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18099 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 8, 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" 
+rule "#18106 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 6, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18113 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 6, c5 == 1, 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" 
+rule "#18116 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18118 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 13, c2 == 1, 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" 
+rule "#18119 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 12, c5 == 13, 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" 
+rule "#18121 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 == 1, c3 <= 4.5, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 12, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 12, c5 == 10, 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" 
+rule "#18124 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 12, c5 == 8, 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" 
+rule "#18125 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 12, c5 == 7, 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" 
+rule "#18127 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 12, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18128 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 12, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18130 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 12, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18133 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 11, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18136 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 11, c2 == 9, 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" 
+rule "#18139 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 <= 6.0, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 11, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18150 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 10, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18152 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 10, c2 == 6, 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" 
+rule "#18153 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 10, c2 == 5, 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" 
+rule "#18154 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 10, c2 == 4, 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" 
+rule "#18157 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 10, c2 == 1, 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" 
+rule "#18162 poker_hand = 4 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 9, c2 == 12, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
 end
 
-rule "#2507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18171 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, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 9, c2 == 12, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 9, c2 == 10, 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" 
+rule "#18175 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 == 3, c1 <= 10.5, c5 <= 5.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 9, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18181 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 9, c2 == 2, 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" 
+rule "#18182 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 9, c2 == 1, 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" 
+rule "#18185 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 7, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2512 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18190 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 7, c5 == 11, c2 == 9, 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" 
+rule "#18191 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 == 3, c1 > 10.5, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 7, c5 == 11, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#2517 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18199 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 7, c5 == 10, 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" 
+rule "#18201 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 7, c5 == 8, 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" 
+rule "#18202 poker_hand = 3 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18204 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 7, c5 == 5, 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" 
+rule "#18206 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 7, c5 == 3, 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" 
+rule "#18214 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 6, c2 == 8, 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" 
+rule "#18221 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 6, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18222 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 5, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18227 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 5, c5 == 8, 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" 
+rule "#18228 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 5, c5 == 7, 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" 
+rule "#18232 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 5, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18234 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18242 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 4, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18243 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 4, c2 == 5, 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" 
+rule "#18245 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 4, c2 == 3, 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" 
+rule "#18247 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 4, c2 == 1, 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" 
+rule "#18249 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 3, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18254 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 3, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 3, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 3, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18258 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 3, c5 == 3, 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" 
+rule "#18259 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 3, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2535 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18261 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 2, c5 == 13, 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" 
+rule "#18266 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 2, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18268 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 2, c5 == 6, 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" 
+rule "#18274 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 1, c2 == 13, 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" 
+rule "#18275 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 1, c2 == 12, 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" 
+rule "#18276 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 1, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2546 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18277 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 1, c2 == 10, 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" 
+rule "#18280 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 1, c2 == 7, 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" 
+rule "#18285 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)
+		 examples.Poker(c4 == 8, c1 == 11, c3 == 1, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18289 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18293 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 10, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18301 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 10, c2 == 2, 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" 
+rule "#18303 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 9, 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" 
+rule "#18305 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 7, 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" 
+rule "#18307 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 5, 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" 
+rule "#18308 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18309 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18310 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 13, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 12, c5 == 12, 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" 
+rule "#18314 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 12, c5 == 11, 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" 
+rule "#18316 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 12, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18317 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 12, c5 == 8, 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" 
+rule "#18324 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 12, c5 == 1, 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" 
+rule "#18325 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18327 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 12, c5 == 12, 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" 
+rule "#18335 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 12, c5 == 4, 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" 
+rule "#18339 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2561 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18344 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 9, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18352 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 9, c5 == 2, 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" 
+rule "#18357 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18358 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18359 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 3, 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" 
+rule "#18360 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 11, c2 == 2, 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" 
+rule "#18363 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 9, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18364 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 9, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18368 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 9, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18369 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 9, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18371 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 9, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18377 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 8, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18379 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 8, c2 == 10, 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" 
+rule "#18380 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 8, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18385 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 8, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18388 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18389 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 7, s4 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18399 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 7, s4 == 3, c5 == 4, 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" 
+rule "#18401 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 7, s4 == 3, c5 == 2, 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" 
+rule "#18402 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 7, s4 == 3, c5 == 1, 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" 
+rule "#18409 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18410 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18411 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 7, 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" 
+rule "#18412 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 6, 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" 
+rule "#18413 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 5, 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" 
+rule "#18414 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 4, 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" 
+rule "#18415 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 3, 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" 
+rule "#18423 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 == 3, c5 > 1.5, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 2, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18425 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 2, c5 == 4, 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" 
+rule "#18428 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 2, c5 == 1, 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" 
+rule "#18429 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 6, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18433 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 5, c5 == 10, 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" 
+rule "#18437 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 5, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18449 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 5, c5 == 4, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18450 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 5, c5 == 4, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#18453 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 5, c5 == 2, 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" 
+rule "#18460 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 12, c5 == 9, 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" 
+rule "#18461 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 12, c5 == 8, 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" 
+rule "#18467 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, c3 > 7.5, c4 <= 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 12, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18468 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 12, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18470 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18473 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18474 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18477 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18478 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18479 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 4, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18483 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 3, s3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18484 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 2, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18489 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 2, c2 == 8, 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" 
+rule "#18490 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 2, c2 == 7, 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" 
+rule "#18491 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18498 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 1, c5 == 12, 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" 
+rule "#18501 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 1, c5 == 9, 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" 
+rule "#18502 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 1, c5 == 8, 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" 
+rule "#18507 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 1, c5 == 3, 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" 
+rule "#18509 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)
+		 examples.Poker(c4 == 8, c1 == 10, c3 == 1, c5 == 1, 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" 
+rule "#18510 poker_hand = 2 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18515 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18516 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 13, c2 == 7, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18523 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 13, c2 == 7, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#18529 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18535 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 12, c2 == 13, 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" 
+rule "#18536 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 12, c2 == 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" 
+rule "#18541 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 12, c2 == 7, 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" 
+rule "#18543 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 12, c2 == 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" 
+rule "#18546 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, c1 <= 4.0, c2 > 7.5, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 12, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18550 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 11, c3 == 11, 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" 
+rule "#18555 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 11, c3 == 6, 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" 
+rule "#18558 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 11, c3 == 3, 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" 
+rule "#18559 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 11, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2626 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18560 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 11, c3 == 1, 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" 
+rule "#18567 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 10, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18568 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 10, c2 == 6, 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" 
+rule "#18569 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 10, c2 == 5, 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" 
+rule "#18571 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 10, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18572 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 10, c2 == 2, 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" 
+rule "#18574 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 9, c2 == 13, 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" 
+rule "#18579 poker_hand = 2 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 9, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18580 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 9, c2 == 7, 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" 
+rule "#18582 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 9, c2 == 5, 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" 
+rule "#18584 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 == 4, c1 <= 8.5, c3 > 5.0, c2 <= 5.5, c4 <= 10.5, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 9, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#2644 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18587 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 == 4, c1 <= 8.5, c3 > 5.0, c2 <= 5.5, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 8, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#2645 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18592 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 == 4, c1 <= 8.5, c3 > 5.0, c2 > 5.5, c4 <= 3.5, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#2646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18595 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 8, c3 == 5, c2 == 13, 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" 
+rule "#18603 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 == 4, c1 <= 8.5, c3 > 5.0, c2 > 5.5, c4 > 3.5, c5 > 3, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 8, c3 == 5, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18609 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18610 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 8, c3 == 2, 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" 
+rule "#18611 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 8, c3 == 1, 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" 
+rule "#18612 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 13, 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" 
+rule "#18618 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 12, c2 == 8, 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" 
+rule "#18627 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 == 3, c1 <= 12.5, c3 <= 11.5, c4 > 6.5, c2 <= 11.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18628 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 9, 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" 
+rule "#18630 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 == 2, c5 > 2.0, c4 <= 12.0, c2 <= 3.0, c1 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18631 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18636 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 7, c3 == 1, 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" 
+rule "#18639 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 6, c3 == 11, 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" 
+rule "#18641 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18644 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 6, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18646 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 6, c3 == 4, 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" 
+rule "#18648 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 6, c3 == 2, 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" 
+rule "#18650 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 5, c2 == 13, 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" 
+rule "#18653 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 5, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2669 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18659 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 5, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2670 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18660 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 5, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2671 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18664 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 > 3.5, c4 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 4, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2673 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18665 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 4, c3 == 11, 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" 
+rule "#18666 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 4, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2675 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18669 poker_hand = 5 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 4, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
 end
 
-rule "#2676 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18670 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 4, c3 == 6, 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" 
+rule "#18675 poker_hand = 5 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 4, c3 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#18676 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 4, c3 == 3, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18687 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18688 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18689 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18692 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 9, 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" 
+rule "#18693 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18694 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 7, 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" 
+rule "#18697 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 > 3.0, c5 > 4.5, c2 > 9.0, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18698 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 3, 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" 
+rule "#18700 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 > 3.0, c5 > 4.5, c2 <= 9.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 3, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18702 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 2, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18704 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18707 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18712 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 2, c2 == 2, 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" 
+rule "#18714 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18716 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 12, c3 == 12, 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" 
+rule "#18717 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 12, c3 == 11, 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" 
+rule "#18720 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 12, c3 == 8, 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" 
+rule "#18730 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 <= 7.5, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18731 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 8, 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" 
+rule "#18733 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 6, 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" 
+rule "#18734 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 5, 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" 
+rule "#18735 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 4, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18744 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 4, c3 == 4, 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" 
+rule "#18745 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)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 4, c3 == 3, 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" 
+rule "#18750 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 2, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18753 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 9, c5 == 1, c2 == 2, c3 == 9, 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" 
+rule "#18764 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 12, 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" 
+rule "#18766 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2708 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18767 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2709 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18780 poker_hand = 3 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 1, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 1, c2 == 5, 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" 
+rule "#18784 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 1, c2 == 4, 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" 
+rule "#18787 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 13, c5 == 1, c2 == 1, 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" 
+rule "#18789 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 11, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18795 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 11, c2 == 7, 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" 
+rule "#18796 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, c2 > 3.0, c3 <= 6.5, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 11, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18802 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 10, c2 == 13, 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" 
+rule "#18804 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2722 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18805 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, c2 > 3.0, c3 > 6.5, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#2725 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18806 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 10, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2726 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18808 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 10, c2 == 7, 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" 
+rule "#18810 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 10, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18819 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 9, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18824 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18830 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 8, c2 == 11, 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" 
+rule "#18831 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 == 2, c3 <= 10.0, c5 <= 3.0, c1 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 8, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18832 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18833 poker_hand = 7 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 8, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (7)");
+end
+
+rule "#18838 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18840 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18841 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 7, c5 == 13, 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" 
+rule "#18842 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 7, c5 == 12, 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" 
+rule "#18847 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 <= 5.5, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18848 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 7, c5 == 6, 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" 
+rule "#18850 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 7, c5 == 4, 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" 
+rule "#18851 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 7, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18854 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 6, c2 == 13, 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" 
+rule "#18856 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 6, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2745 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18859 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 == 2, c3 > 10.0, c2 <= 3.0, c1 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 6, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18860 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 6, c2 == 7, 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" 
+rule "#18861 poker_hand = 6 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#18865 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 6, c2 == 2, 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" 
+rule "#18866 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, c2 > 3.0, c1 <= 3.5, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 6, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 5, c5 == 7, 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" 
+rule "#18885 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, c1 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 5, c5 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#2752 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18887 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 5, c5 == 4, c2 == 2, 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" 
+rule "#18891 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 5, c5 == 1, 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" 
+rule "#18892 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 4, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 4, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18898 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 4, c2 == 7, 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" 
+rule "#18899 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 4, c2 == 6, 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" 
+rule "#18902 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 4, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18909 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 3, c5 == 9, 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" 
+rule "#18910 poker_hand = 3 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 3, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#2765 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#18913 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 3, c5 == 5, c2 == 13, 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" 
+rule "#18918 poker_hand = 3 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 3, c5 == 5, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18927 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 3, c5 == 3, 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" 
+rule "#18928 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 3, c5 == 2, 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" 
+rule "#18929 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 3, c5 == 1, 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" 
+rule "#18930 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)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 2, c2 == 13, 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" 
+rule "#18934 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18935 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 2, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18938 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18939 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18946 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 2, c2 == 2, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#18953 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 2, c2 == 2, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18954 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 2, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18955 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18956 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 1, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18959 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 1, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18961 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 1, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18971 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 1, c2 == 5, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#18973 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 1, c2 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18976 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#18977 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 8, c3 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#18982 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 11, 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" 
+rule "#18983 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 10, 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" 
+rule "#18986 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 7, 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" 
+rule "#18988 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 5, 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" 
+rule "#18991 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 4, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18995 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 13, c2 == 4, c3 == 7, 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" 
+rule "#19007 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 12, c3 == 11, 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" 
+rule "#19010 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 12, c3 == 8, 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" 
+rule "#19012 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 12, c3 == 6, 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" 
+rule "#19016 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 12, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2784 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19017 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19018 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 11, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 11, c3 == 12, c2 == 12, 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" 
+rule "#19029 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 11, c3 == 12, c2 == 3, 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" 
+rule "#19032 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, c1 > 3.5, c3 <= 2.5, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 11, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19033 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 11, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 11, c3 == 7, 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" 
+rule "#19046 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 11, c3 == 2, c2 == 8, 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" 
+rule "#19053 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 11, c3 == 2, c2 == 1, 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" 
+rule "#19054 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 11, c3 == 1, 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" 
+rule "#19055 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, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2795 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19056 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 12, 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" 
+rule "#19057 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 11, 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" 
+rule "#19059 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 9, 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" 
+rule "#19060 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, c4 <= 10.5, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19061 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19067 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 10, c2 == 1, 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" 
+rule "#19070 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, c4 <= 10.5, c1 <= 11.5, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19074 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 9, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19075 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 9, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19076 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 9, c3 == 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" 
+rule "#19078 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 9, c3 == 3, 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" 
+rule "#19080 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 9, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19087 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 8, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 8, c3 == 6, 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" 
+rule "#19093 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 8, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19096 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 6, c3 == 12, 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" 
+rule "#19097 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 6, c3 == 11, 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" 
+rule "#19103 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 6, c3 == 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" 
+rule "#19104 poker_hand = 4 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 6, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
 end
 
-rule "#2808 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19111 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 10, 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" 
+rule "#19112 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, c1 > 5.0, c3 > 1.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19115 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 6, 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" 
+rule "#19120 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, c1 > 5.0, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 5, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19124 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 5, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#19126 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 5, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19134 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 1, c3 == 11, 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" 
+rule "#19143 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 1, c3 == 2, 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" 
+rule "#19144 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 5, c2 == 1, c3 == 1, 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" 
+rule "#19146 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 == 3, c1 <= 6.0, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 11, c2 == 11, 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" 
+rule "#19155 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 == 3, c1 > 6.0, c4 <= 4.0, c2 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 11, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19168 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 7, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19170 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 7, c2 == 6, 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" 
+rule "#19174 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 7, c2 == 2, 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" 
+rule "#19181 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19185 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 3, c2 == 10, 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" 
+rule "#19186 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19188 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 3, c2 == 7, 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" 
+rule "#19190 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 3, c2 == 5, 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" 
+rule "#19191 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 3, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19204 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 3, c2 == 2, c3 == 2, 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" 
+rule "#19205 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 3, c2 == 2, c3 == 1, 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" 
+rule "#19208 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 2, c2 == 12, 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" 
+rule "#19209 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 2, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19213 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 2, c2 == 7, 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" 
+rule "#19214 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 2, c2 == 6, 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" 
+rule "#19217 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 2, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19218 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 2, c2 == 2, 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" 
+rule "#19221 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 1, c2 == 12, 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" 
+rule "#19224 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 1, c2 == 9, 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" 
+rule "#19225 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, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 1, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19227 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 1, c2 == 6, 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" 
+rule "#19228 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 1, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19231 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 1, c2 == 2, 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" 
+rule "#19232 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)
+		 examples.Poker(c4 == 8, c1 == 7, c5 == 1, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19234 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 13, c3 == 12, 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" 
+rule "#19236 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 13, c3 == 10, 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" 
+rule "#19249 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 12, c5 == 10, 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" 
+rule "#19251 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 12, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 12, c5 == 7, c3 == 13, 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" 
+rule "#19259 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 12, c5 == 7, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2849 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19263 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 12, c5 == 7, c3 == 2, 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" 
+rule "#19265 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 12, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19266 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 12, c5 == 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" 
+rule "#19267 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 12, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19271 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19274 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19275 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19276 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 8, 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" 
+rule "#19278 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, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19280 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 4, 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" 
+rule "#19281 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 11, c5 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2856 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19289 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 10, c3 == 8, 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" 
+rule "#19290 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, c1 <= 12.5, c5 > 6.5, c2 <= 13, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19291 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 10, c3 == 6, 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" 
+rule "#19296 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 10, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2865 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19297 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 13, 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" 
+rule "#19306 poker_hand = 4 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 10, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#19308 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 10, c5 == 5, 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" 
+rule "#19320 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 7, c5 == 8, 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" 
+rule "#19327 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 == 1, c4 <= 13, c2 <= 11.0, c5 <= 13, c1 > 9.0, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 7, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 6, 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" 
+rule "#19331 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 == 1, c4 <= 13, c2 > 11.0, c1 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 4, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19339 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 4, c5 == 4, 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" 
+rule "#19344 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 == 4, c3 <= 10.0, c2 <= 4.0, c1 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19345 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 9, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19348 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 8, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19351 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 8, c5 == 8, 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" 
+rule "#19356 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, c5 > 3.5, c4 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 8, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#19362 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19363 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19367 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19376 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#19379 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19381 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 7, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19385 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 6, c5 == 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" 
+rule "#19386 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 6, c5 == 11, 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" 
+rule "#19387 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 6, c5 == 10, 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" 
+rule "#19389 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, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 6, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19390 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 6, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19391 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 6, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#19392 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 6, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19396 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 6, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19397 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 5, c5 == 13, 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" 
+rule "#19398 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, c2 > 5.0, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 5, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19399 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19401 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 5, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19402 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 5, c5 == 8, 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" 
+rule "#19404 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 5, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19406 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 5, c5 == 4, 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" 
+rule "#19407 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 5, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19412 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19422 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 4, c3 == 7, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19424 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 4, c3 == 7, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#19429 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 4, c3 == 6, 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" 
+rule "#19435 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 3, c5 == 13, 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" 
+rule "#19442 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 3, c5 == 6, 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" 
+rule "#19445 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 3, c5 == 3, 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" 
+rule "#19451 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 3, c5 == 2, c3 == 8, 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" 
+rule "#19455 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, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 3, c5 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2900 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19457 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 3, c5 == 2, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19461 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 12, 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" 
+rule "#19465 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, c1 > 4.5, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 11, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19473 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 11, c5 == 2, 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" 
+rule "#19476 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, c1 <= 4.5, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2905 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19478 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, c1 <= 4.5, c2 > 3.0, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2906 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19481 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 4, 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" 
+rule "#19483 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, c2 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19484 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 2, c3 == 1, 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" 
+rule "#19486 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, c1 > 9.5, c4 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2913 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19497 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 9, c5 == 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" 
+rule "#19501 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 9, c5 == 1, 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" 
+rule "#19502 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 8, 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" 
+rule "#19503 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 7, c5 == 13, 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" 
+rule "#19508 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 7, c5 == 8, 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" 
+rule "#19516 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 6, 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" 
+rule "#19517 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, c4 > 2.0, c5 > 3.0, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19518 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 4, 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" 
+rule "#19521 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)
+		 examples.Poker(c4 == 8, c1 == 6, c2 == 1, c3 == 1, 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" 
+rule "#19522 poker_hand = 3 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#19536 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 11, 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" 
+rule "#19540 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 7, 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" 
+rule "#19542 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 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" 
+rule "#19550 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, c5 > 7.5, c4 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 4, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19552 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 4, c3 == 4, 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" 
+rule "#19554 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 4, c3 == 2, 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" 
+rule "#19558 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, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 13, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19560 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 12, c2 == 12, 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" 
+rule "#19564 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 12, c2 == 8, 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" 
+rule "#19565 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 12, c2 == 7, 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" 
+rule "#19567 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 12, c2 == 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" 
+rule "#19570 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 12, c2 == 4, c3 == 11, 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" 
+rule "#19573 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 12, c2 == 4, c3 == 8, 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" 
+rule "#19581 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 12, c2 == 3, 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" 
+rule "#19585 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19591 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 11, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19596 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 11, c2 == 3, 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" 
+rule "#19600 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 9, 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" 
+rule "#19601 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19602 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 7, 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" 
+rule "#19603 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 5, 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" 
+rule "#19607 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 2, 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" 
+rule "#19608 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 11, c3 == 1, 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" 
+rule "#19612 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 10, 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" 
+rule "#19617 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, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 5, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19620 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 5, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19635 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 4, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19641 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 4, c3 == 2, 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" 
+rule "#19645 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 10, c2 == 1, 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" 
+rule "#19654 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, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 9, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19659 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 9, c2 == 4, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19665 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 9, c2 == 4, c3 == 3, 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" 
+rule "#19669 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 9, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19671 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 8, c2 == 13, 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" 
+rule "#19673 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 == 1, c2 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 8, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19674 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 8, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19677 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 8, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19678 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 8, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19681 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 8, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19685 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 7, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19688 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 7, c2 == 9, 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" 
+rule "#19689 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 == 4, c3 <= 8.0, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 7, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#19691 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 7, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#19693 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 7, c2 == 4, 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" 
+rule "#19695 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 7, c2 == 2, 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" 
+rule "#19697 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 == 4, c3 > 8.0, c5 > 5.0, c1 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19699 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 11, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19702 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 11, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19704 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 11, c3 == 8, 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" 
+rule "#19706 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 11, c3 == 6, 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" 
+rule "#19713 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 9, 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" 
+rule "#19715 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19716 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19717 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 6, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19724 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 5, c2 == 11, 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" 
+rule "#19726 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, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 5, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19727 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 5, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19730 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 5, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#19733 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 5, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#19737 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19739 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 4, c3 == 9, 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" 
+rule "#19742 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 4, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19745 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 4, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19746 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19750 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 2, c2 == 12, 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" 
+rule "#19751 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 2, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19754 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 2, c2 == 8, 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" 
+rule "#19755 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19756 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 2, c2 == 6, 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" 
+rule "#19758 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 2, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19759 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 2, c2 == 3, 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" 
+rule "#19761 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 2, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#2983 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19767 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 1, c2 == 8, 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" 
+rule "#19768 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 1, c2 == 7, c3 == 13, 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" 
+rule "#19770 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 <= 13, c3 > 4.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 1, c2 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 1, c2 == 7, c3 == 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" 
+rule "#19783 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 1, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#2993 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19784 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 > 1.0, c3 > 12.0, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 1, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19785 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 1, c2 == 2, 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" 
+rule "#19786 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)
+		 examples.Poker(c4 == 8, c1 == 5, c5 == 1, c2 == 1, 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" 
+rule "#19788 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19791 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 11, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19793 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 11, c3 == 9, 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" 
+rule "#19795 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 11, c3 == 7, 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" 
+rule "#19802 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 10, 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" 
+rule "#19805 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 7, 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" 
+rule "#19816 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, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3004 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19817 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 13, c2 == 4, c3 == 4, 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" 
+rule "#19828 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, c1 <= 9.0, c3 <= 8.5, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 11, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19831 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 11, c2 == 7, 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" 
+rule "#19840 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 10, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3007 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19841 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, c1 <= 9.0, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3008 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19842 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, c3 <= 3.0, c1 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 10, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3009 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19844 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 10, c3 == 7, 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" 
+rule "#19845 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, c3 > 3.0, c1 > 4.5, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 10, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 10, c3 == 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" 
+rule "#19849 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 10, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19850 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 10, c3 == 1, 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" 
+rule "#19857 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 9, s4 == 3, c2 == 8, 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" 
+rule "#19858 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 9, s4 == 3, c2 == 7, 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" 
+rule "#19863 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 9, s4 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19867 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 8, c3 == 13, 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" 
+rule "#19869 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 8, c3 == 11, 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" 
+rule "#19872 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 == 3, c3 > 1.5, c4 > 1.0, c2 > 12.0, c1 > 8.0, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#3021 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19874 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 8, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 8, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19876 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 8, c3 == 4, 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" 
+rule "#19877 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 8, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19879 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 8, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19880 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 7, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19889 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 7, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19891 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 7, c3 == 2, 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" 
+rule "#19899 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 7, c3 == 1, c2 == 6, 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" 
+rule "#19904 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 7, c3 == 1, c2 == 1, 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" 
+rule "#19905 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 13, 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" 
+rule "#19907 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19912 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 12, c2 == 7, 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" 
+rule "#19919 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 11, 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" 
+rule "#19922 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 > 3.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19930 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 7, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#19933 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 7, c2 == 3, 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" 
+rule "#19943 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 == 2, c2 > 3.5, c4 > 9.5, c1 > 1.0, c5 <= 10.0, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#19948 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 6, c2 == 1, 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" 
+rule "#19949 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 5, 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" 
+rule "#19952 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 2, 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" 
+rule "#19954 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 1, c2 == 12, 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" 
+rule "#19960 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 1, c2 == 6, 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" 
+rule "#19961 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 6, c3 == 1, c2 == 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" 
+rule "#19974 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 5, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3045 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19975 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 5, c2 == 4, 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" 
+rule "#19976 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 5, c2 == 3, 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" 
+rule "#19978 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 5, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3049 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19981 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 == 1, c2 <= 11.5, c4 > 11.0, c1 <= 7.0, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 4, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#19985 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 4, c2 == 7, 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" 
+rule "#19989 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 == 4, c2 > 1.0, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 4, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3053 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19990 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 == 4, c2 > 1.0, c3 <= 13, c1 > 1.0, c4 <= 2.0, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 4, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3054 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#19992 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 == 4, c2 > 1.0, c3 <= 13, c1 > 1.0, c4 <= 2.0, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 3, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3056 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20001 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 3, c2 == 10, c3 == 7, 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" 
+rule "#20004 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 3, c2 == 10, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3064 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20015 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 3, c2 == 2, 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" 
+rule "#20018 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 2, c2 == 12, 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" 
+rule "#20021 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 <= 5.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20024 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 2, c2 == 6, 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" 
+rule "#20031 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 2, c2 == 4, c3 == 8, 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" 
+rule "#20033 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 2, c2 == 4, c3 == 6, 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" 
+rule "#20038 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 2, c2 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20041 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 2, c2 == 1, 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" 
+rule "#20047 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 1, c3 == 8, 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" 
+rule "#20052 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 > 1.0, c4 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 1, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3080 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20054 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)
+		 examples.Poker(c4 == 8, c1 == 4, c5 == 1, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3082 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20055 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 13, c3 == 13, 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" 
+rule "#20056 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 13, c3 == 12, 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" 
+rule "#20057 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, c2 <= 10.5, c4 > 1.5, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 13, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20062 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 13, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20064 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 13, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20067 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 13, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20071 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 12, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20073 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 12, c3 == 8, 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" 
+rule "#20079 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, c2 <= 10.5, c4 <= 1.5, c1 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 12, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20082 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, c2 <= 10.5, c4 <= 1.5, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20083 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 11, 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" 
+rule "#20085 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20086 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 8, 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" 
+rule "#20088 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 6, 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" 
+rule "#20092 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 2, 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" 
+rule "#20093 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 1, c3 == 13, 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" 
+rule "#20095 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 1, c3 == 11, 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" 
+rule "#20096 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, c1 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 1, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20105 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 11, c5 == 1, c3 == 1, 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" 
+rule "#20114 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 10, c3 == 9, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3101 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20122 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, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 10, c3 == 9, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3103 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20126 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 10, c3 == 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" 
+rule "#20128 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, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 10, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20129 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 10, c3 == 2, 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" 
+rule "#20130 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 10, c3 == 1, 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" 
+rule "#20132 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 9, c3 == 12, 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" 
+rule "#20133 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 9, c3 == 11, 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" 
+rule "#20135 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 9, c3 == 9, 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" 
+rule "#20136 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 == 2, c1 <= 12.0, c5 > 2.0, c2 > 1.5, c3 <= 1.0, c4 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 9, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20137 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 9, c3 == 7, 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" 
+rule "#20142 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 9, c3 == 2, 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" 
+rule "#20143 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 9, c3 == 1, 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" 
+rule "#20144 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 8, c3 == 13, 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" 
+rule "#20147 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 8, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3121 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20149 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 8, c3 == 8, 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" 
+rule "#20151 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 8, c3 == 6, 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" 
+rule "#20158 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 7, c3 == 12, 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" 
+rule "#20159 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 7, c3 == 11, 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" 
+rule "#20162 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 7, c3 == 8, 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" 
+rule "#20164 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 7, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3129 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20166 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 7, c3 == 4, 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" 
+rule "#20171 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 12, 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" 
+rule "#20172 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20173 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20179 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 9, c3 == 8, 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" 
+rule "#20185 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 9, c3 == 2, 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" 
+rule "#20189 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20190 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 5, 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" 
+rule "#20191 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20192 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20194 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 6, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20195 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20197 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 11, 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" 
+rule "#20200 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 <= 2, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20201 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20202 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 6, 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" 
+rule "#20203 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20204 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 4, 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" 
+rule "#20205 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 3, 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" 
+rule "#20208 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 1, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3146 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20212 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, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 5, c3 == 1, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20223 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20227 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 4, c3 == 6, 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" 
+rule "#20229 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 4, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20230 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 4, c3 == 3, 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" 
+rule "#20232 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, c2 > 1.0, c5 <= 4.5, c3 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20234 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 3, c3 == 12, 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" 
+rule "#20235 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 3, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3153 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20238 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 3, c3 == 8, 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" 
+rule "#20244 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 3, c3 == 2, 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" 
+rule "#20248 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 2, c5 == 11, 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" 
+rule "#20251 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 2, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 2, c5 == 7, 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" 
+rule "#20260 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 2, c5 == 6, c3 == 6, 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" 
+rule "#20265 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 2, c5 == 6, c3 == 1, 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" 
+rule "#20269 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 2, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3164 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20271 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 1, c5 == 13, 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" 
+rule "#20274 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 1, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20278 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 1, c5 == 6, 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" 
+rule "#20280 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)
+		 examples.Poker(c4 == 8, c1 == 3, c2 == 1, c5 == 4, 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" 
+rule "#20285 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, c3 <= 11.0, c2 <= 9.0, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 13, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3170 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20286 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, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 13, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20289 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 13, c3 == 8, 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" 
+rule "#20291 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20295 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 13, c3 == 2, 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" 
+rule "#20297 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 13, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20303 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 13, c5 == 7, 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" 
+rule "#20310 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 12, 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" 
+rule "#20311 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, c1 > 4.5, c5 <= 3.5, c4 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20312 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20318 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20319 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20321 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 12, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20324 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 11, 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" 
+rule "#20325 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, c1 > 4.5, c5 > 3.5, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20327 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 8, 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" 
+rule "#20328 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 7, 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" 
+rule "#20330 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20331 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20332 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 3, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20335 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 3, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20338 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 3, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20342 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 3, c5 == 3, 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" 
+rule "#20344 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 3, c5 == 1, 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" 
+rule "#20345 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 2, 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" 
+rule "#20346 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 11, c3 == 1, 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" 
+rule "#20347 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20360 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 10, c5 == 3, 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" 
+rule "#20361 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 > 5.0, c1 > 2.0, c3 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 10, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20364 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20366 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 1, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20380 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 10, c3 == 1, c5 == 4, 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" 
+rule "#20384 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 > 5.0, c1 > 2.0, c3 > 5.5, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20385 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 12, 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" 
+rule "#20386 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20389 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 8, 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" 
+rule "#20393 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 4, c5 == 13, 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" 
+rule "#20397 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, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 4, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3200 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20399 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 4, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3201 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20406 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 3, 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" 
+rule "#20407 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 9, c3 == 2, 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" 
+rule "#20413 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, c3 > 4.5, c1 > 1.5, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 8, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20415 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 8, c3 == 7, 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" 
+rule "#20416 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 8, c3 == 6, 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" 
+rule "#20417 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20429 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 7, c5 == 11, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20433 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 7, c5 == 11, c3 == 4, 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" 
+rule "#20439 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 7, c5 == 8, 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" 
+rule "#20440 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20441 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 7, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20445 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 7, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 6, c3 == 13, 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" 
+rule "#20448 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 6, c3 == 12, 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" 
+rule "#20450 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 6, c3 == 10, 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" 
+rule "#20453 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 6, c3 == 7, 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" 
+rule "#20454 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 == 2, c5 <= 1.0, c1 <= 8.0, c2 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 6, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20455 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 6, c3 == 5, 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" 
+rule "#20459 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 6, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3222 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20461 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, c1 <= 3.5, c2 <= 4.0, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20462 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20463 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20464 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20466 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 7, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20471 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 7, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20482 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20483 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 5, c5 == 2, 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" 
+rule "#20485 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, c1 <= 3.5, c2 <= 4.0, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 4, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20490 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 4, c5 == 8, 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" 
+rule "#20492 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 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 4, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20498 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 4, c5 == 3, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20500 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 4, c5 == 3, c3 == 8, 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" 
+rule "#20509 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 4, c5 == 1, 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" 
+rule "#20510 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 3, c3 == 13, 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" 
+rule "#20511 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20513 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 3, c3 == 10, 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" 
+rule "#20514 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 3, c3 == 9, 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" 
+rule "#20516 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 3, c3 == 7, 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" 
+rule "#20517 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 <= 5.5, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 3, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20518 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 3, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20522 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 3, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20523 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 2, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20526 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 2, c5 == 10, 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" 
+rule "#20529 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 2, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20532 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 2, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20533 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 2, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20534 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 2, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#20543 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 12, c5 == 7, 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" 
+rule "#20548 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 > 3.5, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 12, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20550 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 11, 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" 
+rule "#20551 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 10, 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" 
+rule "#20552 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 9, 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" 
+rule "#20555 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20557 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 4, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20563 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 4, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 4, c5 == 1, 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" 
+rule "#20570 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 3, 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" 
+rule "#20572 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)
+		 examples.Poker(c4 == 8, c1 == 2, c2 == 1, c3 == 1, 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" 
+rule "#20575 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 13, c5 == 11, 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" 
+rule "#20576 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 13, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20577 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 13, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20578 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 13, c5 == 8, 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" 
+rule "#20581 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 13, c5 == 5, 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" 
+rule "#20588 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 11, 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" 
+rule "#20589 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20593 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 9, c5 == 10, 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" 
+rule "#20594 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 9, c5 == 9, 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" 
+rule "#20604 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 <= 12.5, c3 <= 2.0, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 8, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20606 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 8, c5 == 10, 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" 
+rule "#20612 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 8, c5 == 4, 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" 
+rule "#20616 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 7, 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" 
+rule "#20620 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, c4 <= 12.0, c1 <= 7.5, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20624 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 11, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 11, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20629 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 11, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20631 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 11, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20636 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20638 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20640 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20641 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 8, 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" 
+rule "#20642 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 7, 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" 
+rule "#20644 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20645 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 4, 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" 
+rule "#20646 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 3, 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" 
+rule "#20647 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 10, c5 == 2, 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" 
+rule "#20650 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 9, c5 == 12, 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" 
+rule "#20653 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 9, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20654 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 9, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20656 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 9, c5 == 6, 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" 
+rule "#20657 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 9, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20658 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 9, c5 == 4, 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" 
+rule "#20660 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, c1 <= 2.0, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 9, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20662 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 8, c5 == 13, 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" 
+rule "#20663 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 8, c5 == 12, 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" 
+rule "#20664 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 8, c5 == 11, 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" 
+rule "#20667 poker_hand = 3 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 8, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#20668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 8, c5 == 7, 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" 
+rule "#20670 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 8, c5 == 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" 
+rule "#20671 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 8, c5 == 4, 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" 
+rule "#20673 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 8, c5 == 2, 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" 
+rule "#20674 poker_hand = 2 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 8, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20676 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 7, c3 == 12, 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" 
+rule "#20679 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 7, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20680 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 7, c3 == 8, 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" 
+rule "#20681 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 7, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20682 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 7, c3 == 6, 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" 
+rule "#20683 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3304 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20684 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 7, c3 == 4, 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" 
+rule "#20688 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 6, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3311 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20689 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 6, c5 == 12, 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" 
+rule "#20690 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 6, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20692 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 6, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20693 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 6, c5 == 8, 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" 
+rule "#20696 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 6, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20699 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 6, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20700 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 6, c5 == 1, 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" 
+rule "#20710 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 12, c5 == 5, 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" 
+rule "#20713 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 12, c5 == 2, 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" 
+rule "#20717 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, c2 > 3.5, c3 <= 7.0, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 8, 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" 
+rule "#20720 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 6, 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" 
+rule "#20722 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, c5 <= 4.5, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20723 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 5, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20728 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20729 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20732 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 4, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20737 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20738 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#20740 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 3, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20750 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 3, c5 == 2, 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" 
+rule "#20751 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 3, c5 == 1, 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" 
+rule "#20753 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 12, 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" 
+rule "#20755 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 10, 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" 
+rule "#20756 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 9, 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" 
+rule "#20759 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3340 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20762 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 3, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20767 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 3, c3 == 8, 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" 
+rule "#20769 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 3, c3 == 6, 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" 
+rule "#20771 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 2, c5 == 3, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20784 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 1, c3 == 6, 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" 
+rule "#20787 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)
+		 examples.Poker(c4 == 8, c1 == 1, c2 == 1, c3 == 3, 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" 
+rule "#20792 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3350 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20795 poker_hand = 2 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20799 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 13, c1 == 4, 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" 
+rule "#20801 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20805 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#20806 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 10, 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" 
+rule "#20807 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, c1 > 2.0, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20809 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 8, c3 == 12, 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" 
+rule "#20816 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3356 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20822 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 6, 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" 
+rule "#20825 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 12, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20834 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 12, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 12, c1 == 7, 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" 
+rule "#20842 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 11, 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" 
+rule "#20843 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, c1 > 1.5, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3361 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20844 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20847 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 6, 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" 
+rule "#20848 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, c4 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3364 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20851 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 2, 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" 
+rule "#20852 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 11, c3 == 1, 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" 
+rule "#20854 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3368 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20858 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 9, c3 == 12, 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" 
+rule "#20859 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20860 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 9, c3 == 10, 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" 
+rule "#20875 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 3, c3 == 13, 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" 
+rule "#20886 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 3, c3 == 2, 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" 
+rule "#20889 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 10, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20890 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 9, c1 == 13, 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" 
+rule "#20892 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 9, c1 == 11, 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" 
+rule "#20895 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 9, c1 == 8, 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" 
+rule "#20896 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 9, c1 == 7, 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" 
+rule "#20911 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 8, c1 == 5, 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" 
+rule "#20912 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 8, c1 == 4, 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" 
+rule "#20913 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 8, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20914 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 8, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20917 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 7, c1 == 12, 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" 
+rule "#20918 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 7, c1 == 11, 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" 
+rule "#20919 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 7, c1 == 10, 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" 
+rule "#20921 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 7, c1 == 8, 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" 
+rule "#20925 poker_hand = 2 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 7, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#20930 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 12, 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" 
+rule "#20937 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 10, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 10, c3 == 7, 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" 
+rule "#20940 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, c4 > 9.5, c2 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20945 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20953 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 8, c3 == 6, 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" 
+rule "#20958 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 8, c3 == 1, 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" 
+rule "#20959 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 7, 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" 
+rule "#20961 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 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" 
+rule "#20962 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 4, 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" 
+rule "#20964 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, c5 <= 5.5, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3411 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20965 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 6, c1 == 1, 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" 
+rule "#20967 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 5, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20968 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 5, c3 == 11, 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" 
+rule "#20969 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 5, c3 == 10, 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" 
+rule "#20971 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 5, c3 == 8, 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" 
+rule "#20973 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 5, c3 == 6, 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" 
+rule "#20975 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 5, c3 == 4, 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" 
+rule "#20977 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 5, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20979 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 4, c3 == 13, 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" 
+rule "#20980 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 4, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20981 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20983 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 4, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20984 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 4, c3 == 8, 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" 
+rule "#20985 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 4, c3 == 7, 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" 
+rule "#20986 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 4, c3 == 6, 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" 
+rule "#20993 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#20999 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 3, c3 == 9, c1 == 10, 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" 
+rule "#21000 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 3, c3 == 9, c1 == 9, 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" 
+rule "#21009 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 3, c3 == 8, 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" 
+rule "#21011 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, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 3, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3438 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21019 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 2, c1 == 11, 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" 
+rule "#21020 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 2, c1 == 10, 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" 
+rule "#21023 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 2, c1 == 7, 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" 
+rule "#21026 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 2, c1 == 4, 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" 
+rule "#21028 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 2, c1 == 2, 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" 
+rule "#21030 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 1, c3 == 13, 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" 
+rule "#21032 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 1, c3 == 11, 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" 
+rule "#21034 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 1, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3453 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21037 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)
+		 examples.Poker(c4 == 7, c5 == 13, c2 == 1, c3 == 6, 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" 
+rule "#21044 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3455 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21045 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 11, 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" 
+rule "#21052 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21053 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 3, c2 == 13, 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" 
+rule "#21055 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 3, c2 == 11, 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" 
+rule "#21058 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 3, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3460 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21061 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 3, c2 == 5, 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" 
+rule "#21067 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 2, c2 == 12, 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" 
+rule "#21071 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 2, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3466 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21079 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 13, c3 == 1, 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" 
+rule "#21084 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 10, 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" 
+rule "#21085 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 9, 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" 
+rule "#21086 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 8, 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" 
+rule "#21088 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 6, c3 == 13, 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" 
+rule "#21093 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 6, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21095 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 6, c3 == 6, 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" 
+rule "#21101 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 5, 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" 
+rule "#21105 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3480 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21106 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 10, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21110 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 10, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21119 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 10, c3 == 6, c2 == 7, 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" 
+rule "#21123 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 10, c3 == 6, c2 == 3, 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" 
+rule "#21126 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21129 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21131 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 13, 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" 
+rule "#21133 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 == 3, c4 <= 10.5, c5 <= 8.5, c1 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3487 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21135 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 == 3, c4 <= 10.5, c5 <= 8.5, c1 <= 12, c2 <= 6.5, c3 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3491 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21137 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 7, c2 == 13, 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" 
+rule "#21138 poker_hand = 2 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 9, c3 == 7, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21158 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 8, s1 == 2, c2 == 13, 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" 
+rule "#21160 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 8, s1 == 2, c2 == 11, 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" 
+rule "#21162 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 8, s1 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3502 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21166 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 8, s1 == 2, c2 == 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" 
+rule "#21167 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 8, s1 == 2, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21168 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 8, s1 == 2, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 13, 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" 
+rule "#21173 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 9, 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" 
+rule "#21177 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#21180 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 6, c3 == 12, 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" 
+rule "#21186 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 6, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21190 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 6, c3 == 2, 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" 
+rule "#21192 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 <= 10.0, c3 <= 3.5, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21195 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 2, 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" 
+rule "#21196 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 7, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21198 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 13, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21206 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 13, c2 == 4, 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" 
+rule "#21210 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 12, 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" 
+rule "#21213 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 9, 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" 
+rule "#21215 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 7, 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" 
+rule "#21219 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 6, c3 == 3, 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" 
+rule "#21228 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, c1 > 6.0, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 5, c2 == 11, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21232 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 5, c2 == 11, c3 == 5, 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" 
+rule "#21240 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 5, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21242 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 5, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21245 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 5, c2 == 2, 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" 
+rule "#21246 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 5, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21248 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 13, c3 == 12, 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" 
+rule "#21254 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 13, c3 == 6, 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" 
+rule "#21255 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, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 13, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21261 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21265 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 7, 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" 
+rule "#21266 poker_hand = 5 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#21267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 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" 
+rule "#21268 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 4, 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" 
+rule "#21270 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21271 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 4, c2 == 1, 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" 
+rule "#21277 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, c4 > 2.0, c2 <= 12.5, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 3, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21280 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 3, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21282 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 3, c2 == 3, 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" 
+rule "#21284 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, c4 <= 2.0, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 3, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21287 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 11, 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" 
+rule "#21291 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 7, 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" 
+rule "#21293 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 6, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21301 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 6, c2 == 4, 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" 
+rule "#21305 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21306 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21307 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 2, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21311 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 1, c2 == 12, 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" 
+rule "#21315 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)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 1, c2 == 8, 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" 
+rule "#21317 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 1, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21319 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 1, c2 == 5, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21322 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 1, c2 == 5, c3 == 9, 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" 
+rule "#21333 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 > 2.0, c3 <= 8.0, c2 > 3.5, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 12, c1 == 1, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 13, c1 == 13, 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" 
+rule "#21336 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 <= 2.0, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 13, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 13, c1 == 11, 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" 
+rule "#21338 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 13, c1 == 10, 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" 
+rule "#21339 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 13, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21342 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 13, c1 == 6, 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" 
+rule "#21343 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 13, c1 == 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" 
+rule "#21347 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 <= 5.0, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 13, c1 == 2, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21348 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 13, c1 == 2, c2 == 11, 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" 
+rule "#21362 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 13, c2 == 11, 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" 
+rule "#21368 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 13, c2 == 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" 
+rule "#21369 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 13, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21374 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21378 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 10, c2 == 10, 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" 
+rule "#21385 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 10, c2 == 3, 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" 
+rule "#21389 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 8, 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" 
+rule "#21392 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 5, 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" 
+rule "#21393 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21395 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 3, c2 == 12, 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" 
+rule "#21406 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 3, c2 == 1, 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" 
+rule "#21408 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 12, c1 == 1, 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" 
+rule "#21409 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 11, s4 == 4, 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" 
+rule "#21418 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 10, c2 == 8, c1 == 13, 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" 
+rule "#21420 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 10, c2 == 8, c1 == 11, 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" 
+rule "#21432 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 10, c2 == 6, 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" 
+rule "#21433 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 10, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3580 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21438 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 9, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21442 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 9, c2 == 11, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#21446 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 9, c2 == 11, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21453 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 9, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21454 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 9, c2 == 9, 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" 
+rule "#21457 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 9, c2 == 6, 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" 
+rule "#21461 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 9, c2 == 2, 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" 
+rule "#21463 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, c1 <= 5.5, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 8, s5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21468 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 7, c1 == 12, 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" 
+rule "#21469 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 7, c1 == 11, 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" 
+rule "#21470 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 7, c1 == 10, 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" 
+rule "#21479 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, c1 > 1.0, c4 > 12, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 7, c1 == 5, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21481 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 7, c1 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#21489 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 7, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21490 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 7, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21491 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21492 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 6, c1 == 13, 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" 
+rule "#21497 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, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21501 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 6, c1 == 4, 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" 
+rule "#21503 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 6, c1 == 2, 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" 
+rule "#21507 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 5, c2 == 11, 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" 
+rule "#21509 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 5, c2 == 9, 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" 
+rule "#21512 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 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 5, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3606 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21513 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 > 10.5, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 5, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21515 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 5, c2 == 3, 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" 
+rule "#21516 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 5, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3610 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21517 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 5, c2 == 1, 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" 
+rule "#21524 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, c5 > 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 4, c1 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21525 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 4, c1 == 8, c2 == 11, 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" 
+rule "#21537 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 4, c1 == 6, 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" 
+rule "#21538 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 4, c1 == 5, 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" 
+rule "#21539 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 == 1, c1 <= 9.0, c4 > 10.0, c2 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#3619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21547 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 9, 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" 
+rule "#21548 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 8, 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" 
+rule "#21549 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 7, 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" 
+rule "#21553 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 4, c1 == 12, 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" 
+rule "#21562 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 4, c1 == 3, 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" 
+rule "#21571 poker_hand = 2 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 3, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21575 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 3, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#21579 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 3, c2 == 1, 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" 
+rule "#21581 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 2, c1 == 12, 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" 
+rule "#21582 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 2, c1 == 11, 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" 
+rule "#21584 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, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21587 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 2, c1 == 6, 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" 
+rule "#21588 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 2, c1 == 5, 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" 
+rule "#21590 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 2, c1 == 3, 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" 
+rule "#21591 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 2, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21594 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 12, 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" 
+rule "#21595 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 11, 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" 
+rule "#21596 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 10, 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" 
+rule "#21597 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21603 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 8, c1 == 8, 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" 
+rule "#21605 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 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21613 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21615 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 3, 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" 
+rule "#21617 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)
+		 examples.Poker(c4 == 7, c5 == 11, c3 == 1, c2 == 1, 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" 
+rule "#21618 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 13, c2 == 13, 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" 
+rule "#21619 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 13, c2 == 12, 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" 
+rule "#21622 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 13, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21627 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21629 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 13, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21631 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 12, c1 == 13, 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" 
+rule "#21633 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 12, c1 == 11, 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" 
+rule "#21634 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, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 12, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21637 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 12, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21640 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 12, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21641 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 12, c1 == 3, 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" 
+rule "#21642 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 12, c1 == 2, 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" 
+rule "#21644 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 11, c1 == 13, 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" 
+rule "#21646 poker_hand = 2 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21657 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 11, c1 == 6, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21661 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 11, c1 == 6, c2 == 3, 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" 
+rule "#21664 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 11, c1 == 5, 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" 
+rule "#21666 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 11, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3666 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21667 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 11, c1 == 2, 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" 
+rule "#21669 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 10, c2 == 13, 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" 
+rule "#21670 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 10, c2 == 12, 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" 
+rule "#21672 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#3670 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21674 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 10, c2 == 8, 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" 
+rule "#21687 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 9, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
 end
 
-rule "#3672 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21697 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 9, c1 == 1, c2 == 10, 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" 
+rule "#21702 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 9, c1 == 1, c2 == 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" 
+rule "#21707 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21708 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 12, 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" 
+rule "#21716 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 == 4, c4 > 5.5, c1 > 3.5, c3 <= 9.0, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 10, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21720 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 10, c1 == 3, 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" 
+rule "#21723 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3681 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21724 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 8, 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" 
+rule "#21725 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 7, 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" 
+rule "#21726 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 6, 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" 
+rule "#21731 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 4, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21739 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 4, c1 == 2, 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" 
+rule "#21743 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 8, c2 == 1, 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" 
+rule "#21748 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 7, c1 == 9, 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" 
+rule "#21753 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 7, c1 == 4, 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" 
+rule "#21754 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 7, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21755 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 7, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#21757 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 6, c1 == 13, 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" 
+rule "#21762 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21766 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 6, c1 == 4, 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" 
+rule "#21769 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21770 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21775 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 7, 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" 
+rule "#21781 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 5, c2 == 10, 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" 
+rule "#21787 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 5, c2 == 4, 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" 
+rule "#21791 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21793 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 2, 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" 
+rule "#21794 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21801 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 4, c1 == 11, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21806 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 4, c1 == 11, c2 == 4, 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" 
+rule "#21809 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 4, c1 == 11, c2 == 1, 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" 
+rule "#21810 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 4, c1 == 10, 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" 
+rule "#21811 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 4, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3712 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21819 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, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21820 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 3, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21822 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 3, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21823 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 3, c2 == 10, 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" 
+rule "#21824 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 3, c2 == 9, 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" 
+rule "#21828 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, c3 <= 5.5, c5 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3720 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21832 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 3, c2 == 1, 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" 
+rule "#21833 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 2, c2 == 13, 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" 
+rule "#21835 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, c5 <= 12.0, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 2, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21842 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 2, c2 == 4, 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" 
+rule "#21845 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 2, c2 == 1, 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" 
+rule "#21846 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 1, c1 == 13, 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" 
+rule "#21848 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 1, c1 == 11, 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" 
+rule "#21850 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 1, c1 == 9, 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" 
+rule "#21852 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 1, c1 == 7, 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" 
+rule "#21859 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 1, c1 == 5, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 1, c1 == 5, c2 == 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" 
+rule "#21867 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)
+		 examples.Poker(c4 == 7, c5 == 10, c3 == 1, c1 == 4, 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" 
+rule "#21873 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21874 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 9, 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" 
+rule "#21878 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 > 9.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 8, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21881 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 8, c2 == 8, 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" 
+rule "#21890 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21892 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 4, c2 == 13, 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" 
+rule "#21900 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 4, c2 == 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" 
+rule "#21910 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 3, c2 == 8, 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" 
+rule "#21915 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 3, c2 == 3, 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" 
+rule "#21918 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 13, c1 == 2, 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" 
+rule "#21920 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 13, 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" 
+rule "#21922 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 11, 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" 
+rule "#21924 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 == 4, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3764 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#21925 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 8, 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" 
+rule "#21927 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21935 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 2, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21939 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 12, c2 == 2, c1 == 5, 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" 
+rule "#21950 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, c4 > 2.0, c3 <= 9.0, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21951 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 13, c2 == 7, 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" 
+rule "#21958 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 12, 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" 
+rule "#21959 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 11, 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" 
+rule "#21960 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#21962 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21964 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21967 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21968 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 11, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21976 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 10, c1 == 10, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#21978 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 10, c1 == 10, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#21986 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 10, c1 == 9, 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" 
+rule "#21987 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 > 1.5, c5 <= 3.0, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21989 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21996 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 9, c2 == 12, 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" 
+rule "#21999 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 == 1, c2 > 1.0, c3 <= 9.0, c1 > 1.5, c5 <= 3.0, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 9, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22001 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 9, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22004 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 9, c2 == 4, 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" 
+rule "#22005 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 9, c2 == 3, 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" 
+rule "#22008 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22011 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 8, c1 == 10, 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" 
+rule "#22012 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 8, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22015 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 8, c1 == 6, c2 == 13, 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" 
+rule "#22020 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 8, c1 == 6, c2 == 8, 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" 
+rule "#22029 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 8, c1 == 4, 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" 
+rule "#22033 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 7, c2 == 13, 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" 
+rule "#22038 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 7, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22039 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 7, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22040 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 7, c2 == 6, 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" 
+rule "#22043 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22055 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 6, c2 == 4, 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" 
+rule "#22057 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, c1 > 5.5, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 6, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22058 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 6, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22062 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22064 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 5, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22070 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 5, c2 == 2, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#22078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 5, c2 == 2, c1 == 5, 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" 
+rule "#22083 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 5, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22084 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 4, c1 == 13, 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" 
+rule "#22087 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 4, c1 == 10, 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" 
+rule "#22088 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 > 4.0, c3 <= 4.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 4, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22092 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22095 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 4, c1 == 2, 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" 
+rule "#22096 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 4, c1 == 1, 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" 
+rule "#22100 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 3, c2 == 10, 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" 
+rule "#22101 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 3, c2 == 9, 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" 
+rule "#22104 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 3, c2 == 6, 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" 
+rule "#22105 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 == 1, c2 > 1.0, c3 <= 11.5, c1 > 2.0, c4 > 5.5, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22110 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22115 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 10, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22119 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 10, c2 == 7, 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" 
+rule "#22126 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 9, 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" 
+rule "#22129 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 == 1, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 6, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22136 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 6, c2 == 6, 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" 
+rule "#22148 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 5, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22154 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 5, c2 == 1, 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" 
+rule "#22156 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)
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22157 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22158 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 2, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22163 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 1, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22165 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 1, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22169 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 9, c3 == 1, c1 == 3, 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" 
+rule "#22174 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 11, 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" 
+rule "#22175 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22180 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 5, c2 == 13, 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" 
+rule "#22181 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 5, c2 == 12, 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" 
+rule "#22193 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 13, c1 == 4, 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" 
+rule "#22198 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, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22199 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 11, c2 == 13, 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" 
+rule "#22201 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, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3831 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22208 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, c2 > 4.5, c5 <= 5.5, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 11, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22215 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 7, 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" 
+rule "#22218 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, c2 > 4.5, c5 <= 5.5, c4 > 4.5, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 6, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22221 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 6, c2 == 8, 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" 
+rule "#22230 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, c2 > 4.5, c5 > 5.5, c4 > 2.5, c3 > 6, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22235 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22237 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 2, c2 == 8, 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" 
+rule "#22245 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, c2 > 4.5, c5 > 5.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22253 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 12, c1 == 7, 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" 
+rule "#22255 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 12, c1 == 5, 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" 
+rule "#22265 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 10, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
 end
 
-rule "#3842 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22274 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 9, 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" 
+rule "#22279 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 4, 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" 
+rule "#22281 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 11, c2 == 2, 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" 
+rule "#22283 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, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3851 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22285 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 10, c2 == 11, 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" 
+rule "#22286 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3854 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22288 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 10, c2 == 8, 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" 
+rule "#22290 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 10, c2 == 6, 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" 
+rule "#22295 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, c5 > 4.5, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 10, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22297 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 9, c1 == 12, 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" 
+rule "#22300 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 9, c1 == 10, c2 == 12, 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" 
+rule "#22301 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 9, c1 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
 end
 
-rule "#3864 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22316 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 9, c1 == 5, s1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#22317 poker_hand = 8 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 9, c1 == 5, s1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+end
+
+rule "#22323 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 9, c1 == 1, 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" 
+rule "#22325 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 8, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22327 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 8, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22333 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 8, c1 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22335 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 8, c1 == 8, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#22343 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 8, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22345 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 8, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22348 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 8, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22349 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22352 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22353 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22354 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 8, 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" 
+rule "#22355 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.5, c3 > 11.5, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22357 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 5, 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" 
+rule "#22367 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22368 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 4, c2 == 3, 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" 
+rule "#22379 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, c3 <= 8.5, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22381 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 3, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22387 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 6, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22389 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#22392 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 6, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22398 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 6, c2 == 1, 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" 
+rule "#22400 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 12, 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" 
+rule "#22404 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 8, 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" 
+rule "#22405 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 7, 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" 
+rule "#22406 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 6, 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" 
+rule "#22417 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3877 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22420 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 4, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22426 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 2, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 5, c1 == 2, c2 == 7, 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" 
+rule "#22436 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 4, c1 == 13, 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" 
+rule "#22438 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, c5 > 8, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22440 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22442 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 4, c1 == 7, 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" 
+rule "#22443 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 4, c1 == 6, 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" 
+rule "#22444 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 4, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3892 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22454 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 4, c1 == 3, c2 == 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" 
+rule "#22456 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 4, c1 == 3, c2 == 3, 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" 
+rule "#22460 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 4, c1 == 1, 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" 
+rule "#22461 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 3, c2 == 13, 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" 
+rule "#22464 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 3, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3898 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22465 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 3, c2 == 9, 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" 
+rule "#22467 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 3, c2 == 7, 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" 
+rule "#22470 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 3, c2 == 4, 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" 
+rule "#22472 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 3, c2 == 2, 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" 
+rule "#22474 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3907 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22475 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 12, 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" 
+rule "#22476 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3910 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22478 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 9, 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" 
+rule "#22480 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 7, 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" 
+rule "#22481 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 6, 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" 
+rule "#22484 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 3, 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" 
+rule "#22485 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)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 2, c1 == 2, 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" 
+rule "#22487 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 1, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22492 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 8, c3 == 1, c1 == 8, 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" 
+rule "#22500 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 13, c2 == 13, 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" 
+rule "#22503 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 13, c2 == 10, 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" 
+rule "#22505 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22507 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 13, c2 == 6, 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" 
+rule "#22509 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 <= 11.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 13, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3932 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22513 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 12, c2 == 13, 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" 
+rule "#22514 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, c3 > 7.5, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#3935 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22515 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 12, c2 == 11, 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" 
+rule "#22516 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 12, c2 == 10, 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" 
+rule "#22524 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 12, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3939 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22528 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 11, c2 == 11, 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" 
+rule "#22529 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 11, c2 == 10, 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" 
+rule "#22531 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 11, c2 == 8, 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" 
+rule "#22536 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, c5 <= 11.0, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 11, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3946 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22538 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#3947 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22541 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 8, c1 == 13, c2 == 13, 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" 
+rule "#22545 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 8, c1 == 13, c2 == 9, 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" 
+rule "#22555 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, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 8, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3952 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22557 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 8, c1 == 9, 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" 
+rule "#22558 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 8, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#3954 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22560 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 8, c1 == 6, 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" 
+rule "#22562 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, c3 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 8, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22563 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 8, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22565 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 8, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22569 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22570 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22571 poker_hand = 7 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 7, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (7)");
+end
+
+rule "#22574 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 7, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22576 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 7, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22578 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22581 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 6, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22582 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 6, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22584 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 6, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22589 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 6, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22590 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 6, c2 == 2, 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" 
+rule "#22592 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 5, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22597 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 5, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22598 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 5, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22601 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 5, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22603 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 5, c2 == 2, 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" 
+rule "#22605 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 4, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#3960 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22607 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 4, c2 == 11, 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" 
+rule "#22609 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 4, c2 == 9, 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" 
+rule "#22610 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 4, c2 == 8, 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" 
+rule "#22613 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 4, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3970 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22614 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 == 3, c2 <= 2.0, c1 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22615 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 4, c2 == 3, 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" 
+rule "#22616 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 4, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3972 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22618 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 13, 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" 
+rule "#22622 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3974 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22624 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22632 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22635 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22640 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 3, 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" 
+rule "#22641 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 2, 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" 
+rule "#22642 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 3, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22643 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, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 2, c2 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22644 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 2, c2 == 13, c1 == 12, 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" 
+rule "#22658 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 2, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3982 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22659 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22662 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22663 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22665 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 2, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22666 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 2, c2 == 2, 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" 
+rule "#22670 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 1, c1 == 11, 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" 
+rule "#22674 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 1, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#22675 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 1, c1 == 6, 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" 
+rule "#22676 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)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 1, c1 == 5, 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" 
+rule "#22678 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 7, c3 == 1, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22681 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22684 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22687 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22690 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 4, 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" 
+rule "#22691 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 3, 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" 
+rule "#22702 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 1, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3994 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22705 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 13, c3 == 1, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#3997 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22706 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 > 13, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 12, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#3998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22707 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 12, c3 == 12, 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" 
+rule "#22708 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 12, c3 == 11, 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" 
+rule "#22712 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 12, c3 == 7, 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" 
+rule "#22713 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 12, c3 == 6, 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" 
+rule "#22715 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 12, c3 == 4, 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" 
+rule "#22716 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, c3 <= 12.5, c5 > 2.5, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22717 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 12, c3 == 2, 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" 
+rule "#22719 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, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4009 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22720 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 11, 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" 
+rule "#22723 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 9, 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" 
+rule "#22726 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22727 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 5, 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" 
+rule "#22729 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 3, 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" 
+rule "#22730 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22731 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 11, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22734 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 13, c2 == 11, 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" 
+rule "#22738 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, c5 > 9.0, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 13, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22745 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 12, 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" 
+rule "#22747 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22749 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 6, 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" 
+rule "#22754 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 3, 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" 
+rule "#22756 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 2, c2 == 12, 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" 
+rule "#22761 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 10, c3 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22772 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 13, c2 == 10, 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" 
+rule "#22773 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 13, c2 == 9, 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" 
+rule "#22789 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 12, c2 == 6, 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" 
+rule "#22792 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 12, c2 == 3, 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" 
+rule "#22799 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 7, 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" 
+rule "#22800 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 6, 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" 
+rule "#22801 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 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" 
+rule "#22803 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22805 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 9, c3 == 1, 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" 
+rule "#22809 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 8, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#22812 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 8, c2 == 9, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22813 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 8, c2 == 9, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#22824 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 8, c2 == 7, 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" 
+rule "#22827 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, c3 <= 7.5, c5 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 8, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22828 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22829 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 8, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22830 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22831 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 13, 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" 
+rule "#22832 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 12, 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" 
+rule "#22833 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22836 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 8, 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" 
+rule "#22838 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 <= 3.0, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22840 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 4, 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" 
+rule "#22841 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4050 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22843 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 7, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22844 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 6, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22848 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 6, c3 == 12, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22852 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 6, c3 == 12, c2 == 6, 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" 
+rule "#22858 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 6, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22864 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 6, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22866 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22868 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 6, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#22869 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 13, 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" 
+rule "#22871 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 12, c2 == 12, 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" 
+rule "#22879 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, c2 > 2.0, c4 > 2.0, c1 <= 10.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 12, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22883 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 11, 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" 
+rule "#22887 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, c2 > 2.0, c4 > 2.0, c1 > 10.5, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4056 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22891 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 8, c2 == 8, 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" 
+rule "#22893 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 8, c2 == 6, 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" 
+rule "#22899 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 7, 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" 
+rule "#22903 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22905 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 5, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22908 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 4, c3 == 11, 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" 
+rule "#22910 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 4, c3 == 9, 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" 
+rule "#22911 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 4, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#22914 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 4, c3 == 5, 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" 
+rule "#22915 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 4, c3 == 4, 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" 
+rule "#22918 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22919 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 3, c2 == 13, c3 == 13, 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" 
+rule "#22922 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 3, c2 == 13, c3 == 10, 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" 
+rule "#22932 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 3, c2 == 12, 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" 
+rule "#22941 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 == 2, c5 > 11.0, c1 <= 7.5, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#22944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 13, 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" 
+rule "#22948 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 9, 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" 
+rule "#22949 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, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4071 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22951 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4075 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22952 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 5, c2 == 13, 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" 
+rule "#22955 poker_hand = 5 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 5, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
 end
 
-rule "#4077 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#22972 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 3, c2 == 7, 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" 
+rule "#22975 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 > 12.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 3, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22978 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 2, c3 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22981 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 13, 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" 
+rule "#22982 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 > 12.5, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22983 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22985 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#22991 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 8, c2 == 8, 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" 
+rule "#22994 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 8, c2 == 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" 
+rule "#22999 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 7, 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" 
+rule "#23001 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 5, 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" 
+rule "#23002 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)
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23003 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23005 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 6, c1 == 1, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23006 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23008 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 13, c3 == 11, 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" 
+rule "#23009 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 13, c3 == 10, 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" 
+rule "#23010 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, c2 > 1.0, c3 <= 12.5, c1 > 1.5, c4 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 13, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23011 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 13, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 13, c3 == 7, 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" 
+rule "#23018 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, c2 > 1.0, c3 > 12.5, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 13, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 12, c1 == 10, 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" 
+rule "#23024 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, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23026 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23027 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 12, c1 == 5, 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" 
+rule "#23028 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 12, c1 == 4, 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" 
+rule "#23032 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 13, 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" 
+rule "#23033 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 12, 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" 
+rule "#23040 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 6, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23045 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 6, c1 == 7, 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" 
+rule "#23058 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 5, c1 == 7, 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" 
+rule "#23061 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 5, c1 == 4, 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" 
+rule "#23068 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 11, c3 == 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" 
+rule "#23071 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 12, c1 == 12, 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" 
+rule "#23074 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 12, c1 == 9, 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" 
+rule "#23077 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 12, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23083 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23085 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23088 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23089 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 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" 
+rule "#23090 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 > 10.5, c4 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23091 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 10, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23094 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 9, c1 == 13, 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" 
+rule "#23095 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 9, c1 == 12, 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" 
+rule "#23097 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 9, c1 == 10, 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" 
+rule "#23100 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 9, c1 == 7, 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" 
+rule "#23101 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 9, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#23102 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 9, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23104 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 9, c1 == 3, 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" 
+rule "#23107 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23109 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23111 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 8, 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" 
+rule "#23117 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 6, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23123 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 6, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#23128 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#23129 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23131 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 8, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23132 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 7, s4 == 4, 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" 
+rule "#23138 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23140 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 9, 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" 
+rule "#23141 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 8, 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" 
+rule "#23143 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 6, 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" 
+rule "#23144 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23148 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 4, c3 == 10, 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" 
+rule "#23150 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 4, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#23158 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 3, 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" 
+rule "#23159 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 2, 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" 
+rule "#23160 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 1, c3 == 13, 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" 
+rule "#23172 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 6, c1 == 1, c3 == 1, 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" 
+rule "#23173 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 13, 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" 
+rule "#23176 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23178 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23179 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23183 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23185 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23187 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 12, 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" 
+rule "#23189 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23191 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#23193 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23203 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 6, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#23207 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 4, c3 == 4, 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" 
+rule "#23211 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 13, 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" 
+rule "#23214 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 <= 5.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23218 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 12, c3 == 7, 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" 
+rule "#23234 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23235 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 10, c3 == 4, 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" 
+rule "#23237 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 10, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23245 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 5, c3 == 11, 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" 
+rule "#23253 poker_hand = 2 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 3, c1 == 5, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23261 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 2, c1 == 12, 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" 
+rule "#23262 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 2, c1 == 11, 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" 
+rule "#23263 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23265 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 2, c1 == 8, 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" 
+rule "#23267 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 2, c1 == 6, 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" 
+rule "#23268 poker_hand = 2 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 2, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23271 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23272 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 2, c1 == 1, 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" 
+rule "#23273 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 1, c3 == 13, 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" 
+rule "#23274 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 1, c3 == 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" 
+rule "#23278 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 1, c3 == 8, 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" 
+rule "#23280 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 1, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4166 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23283 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 1, c3 == 3, 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" 
+rule "#23285 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)
+		 examples.Poker(c4 == 7, c5 == 5, c2 == 1, c3 == 1, 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" 
+rule "#23286 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 11, 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" 
+rule "#23290 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23291 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 8, c3 == 13, 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" 
+rule "#23299 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 8, c3 == 5, 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" 
+rule "#23306 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 5, 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" 
+rule "#23307 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, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23309 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 13, c2 == 2, 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" 
+rule "#23311 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, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 12, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23313 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 12, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23315 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 12, c2 == 9, 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" 
+rule "#23316 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 12, c2 == 8, 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" 
+rule "#23319 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 12, c2 == 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" 
+rule "#23321 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 12, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23326 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 11, 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" 
+rule "#23327 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 10, 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" 
+rule "#23330 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 7, 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" 
+rule "#23336 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 6, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 6, c2 == 7, 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" 
+rule "#23345 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 4, 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" 
+rule "#23346 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 == 2, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23347 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 11, c3 == 2, 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" 
+rule "#23349 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 13, 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" 
+rule "#23353 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, c2 > 1.0, c4 <= 8.0, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 12, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4204 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23357 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, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 12, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4205 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23361 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 12, c2 == 2, 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" 
+rule "#23365 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 9, 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" 
+rule "#23367 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4209 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23368 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4211 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23369 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 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" 
+rule "#23373 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 10, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 9, c3 == 13, 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" 
+rule "#23376 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23377 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 9, c3 == 10, 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" 
+rule "#23379 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 9, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23381 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 9, c3 == 6, 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" 
+rule "#23382 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 9, c3 == 5, 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" 
+rule "#23388 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, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 9, c3 == 4, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23389 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 9, c3 == 4, c2 == 7, 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" 
+rule "#23397 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 9, c3 == 2, 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" 
+rule "#23400 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23402 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 8, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23403 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23405 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 8, c2 == 7, 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" 
+rule "#23406 poker_hand = 4 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 8, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#23408 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 8, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23409 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23412 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 7, c2 == 13, 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" 
+rule "#23417 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 7, c2 == 8, 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" 
+rule "#23419 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 > 8.5, c3 > 11.5, c5 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 7, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23422 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 7, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23423 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 7, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23424 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23429 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 6, c2 == 9, 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" 
+rule "#23435 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 6, c2 == 3, 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" 
+rule "#23436 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 6, c2 == 2, 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" 
+rule "#23441 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 5, c3 == 13, c2 == 10, 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" 
+rule "#23447 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 5, c3 == 13, c2 == 4, 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" 
+rule "#23452 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 5, c3 == 11, 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" 
+rule "#23456 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 5, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23457 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 5, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#23460 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 5, c3 == 3, 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" 
+rule "#23468 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 == 4, c1 <= 11.0, c2 > 12.5, c3 <= 8.5, c4 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 4, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#23471 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 4, c2 == 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" 
+rule "#23473 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 4, c2 == 3, 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" 
+rule "#23474 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 4, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23480 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 10, c2 == 12, 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" 
+rule "#23487 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 10, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23489 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 10, c2 == 3, 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" 
+rule "#23491 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 10, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23493 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23503 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 6, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#23504 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 6, c2 == 4, 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" 
+rule "#23510 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 3, 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" 
+rule "#23512 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 3, c3 == 1, 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" 
+rule "#23516 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, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23517 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 2, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23518 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 2, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23520 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 2, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23521 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 2, c3 == 5, 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" 
+rule "#23523 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, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 2, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4261 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23531 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 > 2.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 1, c3 == 11, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23537 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 1, c3 == 11, c2 == 4, 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" 
+rule "#23542 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 1, c3 == 9, 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" 
+rule "#23543 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)
+		 examples.Poker(c4 == 7, c5 == 4, c1 == 1, c3 == 8, 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" 
+rule "#23551 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23552 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 13, c1 == 12, 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" 
+rule "#23556 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4270 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23559 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 13, c1 == 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" 
+rule "#23560 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 13, c1 == 4, 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" 
+rule "#23561 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 13, c1 == 3, 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" 
+rule "#23563 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 13, c1 == 1, 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" 
+rule "#23564 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4278 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23565 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 == 1, c1 <= 3.0, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#23566 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 11, 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" 
+rule "#23573 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 9, c3 == 8, 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" 
+rule "#23575 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 9, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23578 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 9, c3 == 3, 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" 
+rule "#23583 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 6, 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" 
+rule "#23587 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 12, c1 == 2, 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" 
+rule "#23589 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 11, c1 == 13, 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" 
+rule "#23593 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23600 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 11, c1 == 5, c3 == 10, 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" 
+rule "#23607 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 11, c1 == 5, c3 == 3, 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" 
+rule "#23614 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 10, c3 == 13, 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" 
+rule "#23617 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 10, c3 == 10, 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" 
+rule "#23618 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 10, c3 == 9, 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" 
+rule "#23620 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 10, c3 == 7, 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" 
+rule "#23621 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 10, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23628 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 8, c1 == 13, 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" 
+rule "#23631 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 8, c1 == 10, 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" 
+rule "#23633 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 8, c1 == 8, 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" 
+rule "#23635 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23643 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 7, c3 == 11, 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" 
+rule "#23646 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 7, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#23647 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 7, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#23649 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 7, c3 == 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" 
+rule "#23652 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, c2 <= 11.5, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23655 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 6, c1 == 12, 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" 
+rule "#23659 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23660 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 6, c1 == 7, 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" 
+rule "#23662 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 6, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23667 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, c2 <= 12.5, c1 <= 12, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23677 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 11, c3 == 5, 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" 
+rule "#23681 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 11, c3 == 1, 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" 
+rule "#23683 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 9, 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" 
+rule "#23684 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 8, 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" 
+rule "#23687 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23691 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 5, c1 == 1, 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" 
+rule "#23692 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 4, c1 == 13, 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" 
+rule "#23694 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23695 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 4, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23699 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 4, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 4, c1 == 4, 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" 
+rule "#23704 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 4, c1 == 1, 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" 
+rule "#23707 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 3, c1 == 11, 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" 
+rule "#23714 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 3, c1 == 6, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23722 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 3, c1 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#23727 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 3, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#23728 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 3, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23729 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 3, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23731 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23733 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 2, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23740 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 2, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23743 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 13, 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" 
+rule "#23746 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 10, 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" 
+rule "#23748 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23751 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 6, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23752 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 6, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23754 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 6, c1 == 6, 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" 
+rule "#23770 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4334 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23771 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 4, c1 == 6, 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" 
+rule "#23777 poker_hand = 3 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)
+		 examples.Poker(c4 == 7, c5 == 3, c2 == 1, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#23786 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23789 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 13, c2 == 4, 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" 
+rule "#23795 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 10, 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" 
+rule "#23800 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 9, c2 == 9, 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" 
+rule "#23805 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 9, c2 == 4, 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" 
+rule "#23808 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 9, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23809 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23812 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23815 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23825 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 13, c3 == 1, c2 == 1, 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" 
+rule "#23830 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 == 4, c5 > 6.0, c1 > 4.0, c2 <= 11.0, c3 <= 3.5, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23831 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 12, c2 == 11, 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" 
+rule "#23834 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 12, c2 == 8, 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" 
+rule "#23835 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 12, c2 == 7, 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" 
+rule "#23838 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 12, c2 == 4, 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" 
+rule "#23839 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 12, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23841 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 12, c2 == 1, 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" 
+rule "#23843 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 == 3, c5 > 6.0, c2 > 1.5, c1 > 3.5, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4353 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23845 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 10, 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" 
+rule "#23846 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23847 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23848 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 7, 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" 
+rule "#23850 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23851 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23852 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 11, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23855 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 13, 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" 
+rule "#23856 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 12, 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" 
+rule "#23858 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 10, 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" 
+rule "#23861 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23862 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 6, 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" 
+rule "#23863 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 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" 
+rule "#23865 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, c2 <= 7.0, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 4, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 4, c3 == 4, 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" 
+rule "#23874 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 4, c3 == 3, 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" 
+rule "#23878 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 10, c2 == 2, 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" 
+rule "#23881 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 12, 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" 
+rule "#23884 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23885 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 9, 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" 
+rule "#23886 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 == 4, c3 > 1.0, c4 <= 13, c5 > 12.0, c1 > 2.0, c2 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#23887 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 7, 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" 
+rule "#23889 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 5, 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" 
+rule "#23890 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, c1 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 8, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4384 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23894 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 13, c3 == 13, 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" 
+rule "#23895 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 13, c3 == 12, 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" 
+rule "#23906 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 13, c3 == 1, 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" 
+rule "#23908 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 11, 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" 
+rule "#23911 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4389 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23913 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 <= 1.5, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4390 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23914 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 <= 1.5, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23923 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 2, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#23924 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 2, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23930 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#23932 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 6, c3 == 12, 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" 
+rule "#23933 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 6, c3 == 11, 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" 
+rule "#23941 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 6, c3 == 10, c2 == 6, 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" 
+rule "#23944 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 6, c3 == 10, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23947 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 6, c3 == 9, 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" 
+rule "#23948 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 6, c3 == 8, 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" 
+rule "#23950 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, c2 > 2, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 6, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23953 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23954 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 6, c3 == 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" 
+rule "#23959 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, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 5, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4403 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#23963 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 <= 3.0, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 5, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23966 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 5, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 5, c2 == 2, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23973 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 5, c2 == 2, c3 == 7, 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" 
+rule "#23981 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 > 3.0, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 4, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23986 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 4, c3 == 11, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#23989 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 4, c3 == 11, c2 == 7, 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" 
+rule "#24001 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 > 3.0, c4 > 1.5, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24005 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24009 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 2, c2 == 11, 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" 
+rule "#24010 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 2, c2 == 10, 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" 
+rule "#24013 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 > 8.0, c4 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 2, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#4415 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24016 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 2, c2 == 4, 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" 
+rule "#24024 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, c4 <= 2.0, c1 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 1, c2 == 12, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24033 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 1, c2 == 12, c3 == 1, 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" 
+rule "#24034 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 1, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24038 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 1, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24039 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 1, c2 == 6, 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" 
+rule "#24046 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 1, c2 == 2, c3 == 10, 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" 
+rule "#24049 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 1, c2 == 2, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24053 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 1, c2 == 2, c3 == 3, 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" 
+rule "#24056 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)
+		 examples.Poker(c4 == 7, c5 == 2, c1 == 1, c2 == 1, 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" 
+rule "#24057 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24060 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 10, 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" 
+rule "#24064 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 9, c1 == 10, 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" 
+rule "#24065 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 9, c1 == 9, 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" 
+rule "#24077 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24079 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 4, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24080 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 4, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24084 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 4, c1 == 7, 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" 
+rule "#24091 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 3, 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" 
+rule "#24093 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, c1 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 13, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24094 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 12, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24105 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 12, c1 == 2, 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" 
+rule "#24106 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 == 3, c4 > 1.5, c5 > 13, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#24110 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 11, c1 == 10, 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" 
+rule "#24114 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 11, c1 == 8, c3 == 11, 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" 
+rule "#24123 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 11, c1 == 8, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24127 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24128 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 11, c1 == 4, 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" 
+rule "#24129 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 11, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24133 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 12, 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" 
+rule "#24135 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 10, 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" 
+rule "#24136 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4441 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24137 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, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4444 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24140 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24144 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 2, c3 == 12, 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" 
+rule "#24154 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 2, c3 == 2, 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" 
+rule "#24156 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 10, c1 == 1, 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" 
+rule "#24159 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 11, 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" 
+rule "#24162 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 8, 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" 
+rule "#24165 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24166 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24167 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24171 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 2, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24179 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 2, c3 == 2, 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" 
+rule "#24181 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, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 9, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 8, c1 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24183 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 8, c1 == 13, c3 == 12, 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" 
+rule "#24197 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 8, c1 == 11, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4454 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24206 poker_hand = 5 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 8, c1 == 11, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#24209 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 8, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24210 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24212 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 8, c1 == 7, 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" 
+rule "#24222 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, c5 <= 8.5, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 7, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4458 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24223 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 7, c1 == 9, 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" 
+rule "#24224 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 7, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24230 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 7, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#24240 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 6, c3 == 10, c1 == 8, 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" 
+rule "#24247 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 6, c3 == 10, c1 == 1, 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" 
+rule "#24251 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 6, c3 == 6, 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" 
+rule "#24252 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 6, c3 == 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" 
+rule "#24255 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 6, c3 == 2, 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" 
+rule "#24257 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24258 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 5, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24259 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24261 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24262 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 5, c1 == 8, 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" 
+rule "#24263 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 5, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4468 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24277 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 5, c1 == 4, c3 == 2, 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" 
+rule "#24278 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 5, c1 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24279 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 5, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24284 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 4, c1 == 11, 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" 
+rule "#24287 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 4, c1 == 8, 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" 
+rule "#24294 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 4, c1 == 1, 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" 
+rule "#24295 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 13, 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" 
+rule "#24299 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24309 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 6, c3 == 6, 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" 
+rule "#24310 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 6, c3 == 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" 
+rule "#24314 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 6, c3 == 1, 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" 
+rule "#24319 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 3, c3 == 11, 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" 
+rule "#24329 poker_hand = 2 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 3, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24330 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 3, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#24332 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24333 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24336 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 9, 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" 
+rule "#24337 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 8, 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" 
+rule "#24339 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4484 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24340 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 5, 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" 
+rule "#24346 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 4, c1 == 8, 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" 
+rule "#24348 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)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 4, c1 == 6, 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" 
+rule "#24350 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24355 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 2, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24357 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 1, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24358 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 1, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24363 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 1, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24364 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 1, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24366 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 1, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24369 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 7, c5 == 1, c2 == 1, c3 == 1, 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" 
+rule "#24373 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 12, c1 == 11, 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" 
+rule "#24376 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4501 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24377 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, c2 > 4.5, c1 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 12, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4503 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24381 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 12, c1 == 3, 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" 
+rule "#24382 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 12, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24390 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 11, c1 == 7, 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" 
+rule "#24392 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 11, c1 == 5, 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" 
+rule "#24393 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 11, c1 == 4, 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" 
+rule "#24404 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 11, c1 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24406 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 11, c1 == 3, c2 == 1, 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" 
+rule "#24411 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 10, c1 == 11, 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" 
+rule "#24412 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 10, c1 == 10, 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" 
+rule "#24413 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 10, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24416 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 10, c1 == 8, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24417 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 10, c1 == 8, c2 == 10, 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" 
+rule "#24435 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4516 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24436 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 11, 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" 
+rule "#24437 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4520 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24438 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 9, 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" 
+rule "#24440 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24444 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 3, c1 == 13, 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" 
+rule "#24455 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 3, c1 == 2, 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" 
+rule "#24457 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 2, 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" 
+rule "#24458 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, c2 <= 10.5, c3 <= 13, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 9, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4528 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24460 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, c2 > 10.5, c3 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 8, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24466 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 8, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 8, c2 == 3, 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" 
+rule "#24471 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, c2 > 10.5, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 8, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4534 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24474 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.0, c2 > 1.5, c4 > 2.5, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24475 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24480 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 9, c1 == 9, 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" 
+rule "#24481 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 9, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4536 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24488 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 9, c1 == 1, 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" 
+rule "#24489 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24490 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 7, 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" 
+rule "#24493 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 4, 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" 
+rule "#24498 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 3, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24500 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 7, c2 == 3, c1 == 7, 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" 
+rule "#24510 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 6, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24511 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 6, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24513 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 6, c1 == 9, 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" 
+rule "#24519 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 6, c1 == 8, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24523 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 6, c1 == 8, c2 == 4, 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" 
+rule "#24528 poker_hand = 6 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 6, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#24530 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 6, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#24539 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 13, c1 == 12, 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" 
+rule "#24547 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 13, c1 == 4, 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" 
+rule "#24551 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 == 1, c4 <= 7.0, c3 > 7.0, c1 <= 6.0, c5 <= 8.0, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24552 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24555 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24562 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 9, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24564 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24565 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 9, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24567 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24568 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24574 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 4, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24575 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 3, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24577 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 3, c1 == 11, 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" 
+rule "#24579 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 3, c1 == 9, 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" 
+rule "#24580 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 == 1, c4 <= 7.0, c3 <= 7.0, c1 <= 6.0, c5 <= 6.5, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 3, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4553 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24581 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 3, c1 == 7, 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" 
+rule "#24583 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 3, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24585 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 3, c1 == 3, 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" 
+rule "#24586 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24589 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24592 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 9, c2 == 13, 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" 
+rule "#24593 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 9, c2 == 12, 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" 
+rule "#24605 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 <= 12.5, c5 <= 5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24608 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 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" 
+rule "#24611 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4564 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24612 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 2, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24613 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 1, c2 == 13, 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" 
+rule "#24615 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 1, c2 == 11, 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" 
+rule "#24618 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)
+		 examples.Poker(c4 == 6, c5 == 13, c3 == 1, c2 == 8, 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" 
+rule "#24630 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 11, c1 == 11, 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" 
+rule "#24632 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 <= 4.0, c5 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4572 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24641 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 > 4.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24642 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24643 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 8, 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" 
+rule "#24645 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24648 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 13, c2 == 3, 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" 
+rule "#24651 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 12, c1 == 13, 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" 
+rule "#24654 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 12, c1 == 10, 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" 
+rule "#24655 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 12, c1 == 9, 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" 
+rule "#24658 poker_hand = 6 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 12, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#24662 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 12, c1 == 2, 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" 
+rule "#24664 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 11, c2 == 13, 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" 
+rule "#24667 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 11, c2 == 10, 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" 
+rule "#24671 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, c5 > 1.5, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 11, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24672 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 11, c2 == 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" 
+rule "#24675 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 11, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4587 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24676 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 11, c2 == 1, 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" 
+rule "#24677 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 11, c1 == 10, 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" 
+rule "#24685 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24695 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 7, 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" 
+rule "#24697 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 5, c1 == 13, 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" 
+rule "#24704 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, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 5, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24710 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 4, 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" 
+rule "#24712 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 2, 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" 
+rule "#24713 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 10, c2 == 1, 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" 
+rule "#24723 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 9, c1 == 8, c2 == 9, 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" 
+rule "#24729 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 9, c1 == 8, c2 == 3, 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" 
+rule "#24732 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 9, c1 == 7, 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" 
+rule "#24733 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 > 2.5, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 9, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24734 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 9, c1 == 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" 
+rule "#24737 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 9, c1 == 2, 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" 
+rule "#24739 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 13, 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" 
+rule "#24740 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 12, 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" 
+rule "#24741 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24743 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 9, 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" 
+rule "#24750 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24751 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 1, c2 == 13, 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" 
+rule "#24763 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 8, c1 == 1, c2 == 1, 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" 
+rule "#24765 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 7, c1 == 13, c2 == 12, 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" 
+rule "#24772 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 7, c1 == 13, c2 == 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" 
+rule "#24780 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 7, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24789 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 7, c1 == 5, c2 == 8, 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" 
+rule "#24791 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 7, c1 == 5, c2 == 6, 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" 
+rule "#24797 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 7, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24802 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 6, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 6, c1 == 10, 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" 
+rule "#24805 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 6, c1 == 9, 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" 
+rule "#24807 poker_hand = 2 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#4628 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24811 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 6, c1 == 3, 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" 
+rule "#24815 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 5, c1 == 12, 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" 
+rule "#24817 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 5, c1 == 10, 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" 
+rule "#24818 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 5, c1 == 9, 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" 
+rule "#24821 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 5, c1 == 6, 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" 
+rule "#24823 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 5, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4639 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24826 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 5, c1 == 1, 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" 
+rule "#24829 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24833 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 4, c1 == 7, 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" 
+rule "#24839 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 4, c1 == 1, 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" 
+rule "#24844 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 3, c1 == 13, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24846 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 3, c1 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24847 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 3, c1 == 13, c2 == 6, 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" 
+rule "#24853 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 3, c1 == 12, 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" 
+rule "#24857 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 3, c1 == 8, 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" 
+rule "#24864 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 3, c1 == 1, 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" 
+rule "#24869 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#24870 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 2, c1 == 8, 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" 
+rule "#24878 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 1, c1 == 13, 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" 
+rule "#24879 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, c3 <= 7.0, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 1, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4652 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24880 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, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 1, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24884 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 1, c1 == 7, 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" 
+rule "#24886 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 1, c1 == 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" 
+rule "#24888 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 1, c1 == 3, 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" 
+rule "#24890 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)
+		 examples.Poker(c4 == 6, c5 == 12, c3 == 1, c1 == 1, 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" 
+rule "#24892 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 12, c3 == 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" 
+rule "#24898 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 12, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4666 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24901 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 12, c3 == 4, 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" 
+rule "#24903 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 12, c3 == 2, 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" 
+rule "#24906 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4670 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24908 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 <= 12.0, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 9, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4673 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24909 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 9, c3 == 11, 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" 
+rule "#24920 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, c1 > 13, c3 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4678 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24921 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 7, 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" 
+rule "#24924 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 4, 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" 
+rule "#24925 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, c3 <= 12.5, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4685 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24927 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, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 13, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4686 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24928 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 13, 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" 
+rule "#24931 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, c1 > 1.5, c2 <= 12.5, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24936 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, c1 > 1.5, c2 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4693 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24937 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 4, 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" 
+rule "#24938 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4695 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#24939 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 2, 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" 
+rule "#24941 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 1, c1 == 12, 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" 
+rule "#24945 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 <= 5.5, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 12, c3 == 1, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24956 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 11, c1 == 10, 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" 
+rule "#24958 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 11, c1 == 8, 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" 
+rule "#24959 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, c5 <= 9.0, c1 > 2.5, c2 > 5.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#24967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 10, c1 == 12, 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" 
+rule "#24974 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 10, c1 == 8, c3 == 10, 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" 
+rule "#24982 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 10, c1 == 8, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24984 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 10, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24986 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24988 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 10, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24989 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 10, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24991 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 9, c3 == 13, 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" 
+rule "#24992 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 9, c3 == 12, 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" 
+rule "#24999 poker_hand = 3 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 9, c3 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#25002 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 9, c3 == 9, c1 == 6, 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" 
+rule "#25008 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 9, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25013 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 9, c3 == 3, 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" 
+rule "#25014 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 9, c3 == 2, 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" 
+rule "#25016 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25017 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 12, 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" 
+rule "#25018 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 11, 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" 
+rule "#25022 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25029 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 10, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25030 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25032 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25034 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25037 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 6, c3 == 11, 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" 
+rule "#25042 poker_hand = 3 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 6, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#25048 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 5, 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" 
+rule "#25049 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 4, 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" 
+rule "#25050 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 3, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25057 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 3, c3 == 6, 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" 
+rule "#25063 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 2, 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" 
+rule "#25064 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 8, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4722 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25065 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 13, 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" 
+rule "#25067 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 11, 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" 
+rule "#25068 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25070 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25073 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25079 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 5, c1 == 7, 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" 
+rule "#25086 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 4, 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" 
+rule "#25087 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25088 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25089 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 7, c3 == 1, 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" 
+rule "#25092 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 == 4, c2 > 2.0, c3 > 11.0, c1 <= 12.0, c4 > 5.0, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#25095 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 6, c1 == 8, 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" 
+rule "#25102 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25104 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 12, 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" 
+rule "#25107 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4732 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25108 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 8, 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" 
+rule "#25109 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 7, 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" 
+rule "#25113 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 3, 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" 
+rule "#25114 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 5, c1 == 2, 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" 
+rule "#25116 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 4, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25118 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 4, c3 == 11, 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" 
+rule "#25120 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 4, c3 == 9, 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" 
+rule "#25121 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 4, c3 == 8, 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" 
+rule "#25122 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 4, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25124 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25134 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25135 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 7, 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" 
+rule "#25136 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 6, 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" 
+rule "#25138 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, c2 <= 8, c3 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 5, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25144 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 5, c3 == 6, 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" 
+rule "#25150 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, c2 > 8, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25151 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 3, 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" 
+rule "#25152 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25155 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 2, c1 == 12, 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" 
+rule "#25156 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 2, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 2, c1 == 10, 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" 
+rule "#25158 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25159 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 2, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25167 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 1, c3 == 13, 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" 
+rule "#25169 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)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 1, c3 == 11, 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" 
+rule "#25171 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 <= 11.5, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 1, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 11, c2 == 1, c3 == 8, 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" 
+rule "#25182 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 13, c1 == 11, 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" 
+rule "#25183 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 13, c1 == 10, 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" 
+rule "#25185 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 == 1, c1 > 3.5, c4 > 1.5, c5 > 1.0, c2 <= 11.5, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25187 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 13, c1 == 6, 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" 
+rule "#25189 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 13, c1 == 4, 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" 
+rule "#25191 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, c5 <= 4.5, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 13, c1 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4764 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25195 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 13, c1 == 2, c2 == 9, 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" 
+rule "#25204 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 13, c1 == 1, 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" 
+rule "#25207 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, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 12, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25209 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 12, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25216 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 12, c2 == 2, 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" 
+rule "#25218 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 11, c1 == 13, 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" 
+rule "#25219 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 11, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25224 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 11, c1 == 7, 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" 
+rule "#25226 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25227 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 11, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25237 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 11, c1 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25238 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 11, c1 == 3, c2 == 3, 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" 
+rule "#25241 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 11, c1 == 2, 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" 
+rule "#25244 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 10, c1 == 12, 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" 
+rule "#25245 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 10, c1 == 11, 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" 
+rule "#25248 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 == 3, c5 <= 12, c4 <= 10.0, c3 > 3.5, c1 > 7.0, c2 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#25255 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 10, c1 == 1, 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" 
+rule "#25256 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 == 3, c5 <= 12, c4 > 10.0, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 9, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25258 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 9, c1 == 11, 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" 
+rule "#25263 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, c5 <= 7.5, c4 <= 12.0, c2 <= 2.5, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 9, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4789 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25265 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 9, c1 == 4, 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" 
+rule "#25266 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, c4 <= 4.5, c2 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 9, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 9, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25269 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 8, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25281 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 8, c1 == 8, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#25285 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 8, c1 == 8, c2 == 2, 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" 
+rule "#25288 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 == 1, c1 > 2.0, c4 <= 2.0, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#25289 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 8, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 8, c1 == 4, 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" 
+rule "#25293 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 8, c1 == 1, 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" 
+rule "#25299 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 8, 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" 
+rule "#25300 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 7, 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" 
+rule "#25301 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25302 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25305 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 2, 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" 
+rule "#25306 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 7, c1 == 1, 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" 
+rule "#25308 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 6, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 6, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25321 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 6, c1 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25323 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 6, c1 == 5, c2 == 5, 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" 
+rule "#25331 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 6, c1 == 4, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#25338 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 6, c1 == 4, c2 == 3, 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" 
+rule "#25342 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 6, c1 == 2, 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" 
+rule "#25344 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 5, c1 == 13, 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" 
+rule "#25349 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 5, c1 == 8, 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" 
+rule "#25351 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 5, c1 == 6, 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" 
+rule "#25354 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 5, c1 == 3, 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" 
+rule "#25364 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 5, c1 == 1, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25369 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 4, c2 == 13, 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" 
+rule "#25376 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 4, c2 == 9, c1 == 10, 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" 
+rule "#25383 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 4, c2 == 9, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25387 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 4, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25389 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 4, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25390 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 4, c2 == 4, 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" 
+rule "#25393 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 4, c2 == 1, 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" 
+rule "#25399 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 == 2, c1 > 3.5, c2 > 2.0, c4 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 3, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25403 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25404 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 3, c2 == 3, 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" 
+rule "#25411 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 == 2, c1 > 3.5, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25412 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 2, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25414 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 2, c1 == 6, 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" 
+rule "#25423 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 2, c1 == 5, c2 == 5, 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" 
+rule "#25424 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 2, c1 == 5, c2 == 4, 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" 
+rule "#25428 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 2, c1 == 4, 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" 
+rule "#25431 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 2, c1 == 1, 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" 
+rule "#25432 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, c2 > 4.0, c5 <= 9.5, c3 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 1, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25433 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 1, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25438 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 1, c1 == 7, 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" 
+rule "#25439 poker_hand = 2 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)
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 1, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#25443 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25444 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 10, c3 == 1, c1 == 1, 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" 
+rule "#25449 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, c5 <= 12.5, c2 > 11.5, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 13, c3 == 13, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#25457 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 13, c3 == 13, c1 == 1, 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" 
+rule "#25458 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 13, c3 == 12, 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" 
+rule "#25460 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 13, c3 == 10, 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" 
+rule "#25461 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 > 3.0, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 13, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25462 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 13, c3 == 8, 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" 
+rule "#25464 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25468 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 13, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25471 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 12, c3 == 12, 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" 
+rule "#25473 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 12, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4847 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25475 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 12, c3 == 8, 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" 
+rule "#25477 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 <= 6.5, c4 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 12, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4849 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25482 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 <= 6.5, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25483 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 11, c3 == 13, 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" 
+rule "#25484 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, c1 > 2.0, c2 > 3.5, c5 <= 12.5, c3 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 11, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25487 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 11, c3 == 9, 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" 
+rule "#25492 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 11, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25494 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 11, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25495 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 11, c3 == 1, 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" 
+rule "#25496 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 10, c3 == 13, 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" 
+rule "#25504 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 10, c3 == 5, 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" 
+rule "#25505 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 10, c3 == 4, 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" 
+rule "#25507 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 10, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25510 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25512 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25513 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 10, 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" 
+rule "#25514 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 9, 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" 
+rule "#25522 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 8, c1 == 6, 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" 
+rule "#25525 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 8, c1 == 3, 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" 
+rule "#25533 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 7, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25540 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 7, c1 == 1, 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" 
+rule "#25541 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25542 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 8, c3 == 5, 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" 
+rule "#25547 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 7, c1 == 13, 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" 
+rule "#25556 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 7, c1 == 10, c3 == 7, 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" 
+rule "#25564 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 7, c1 == 8, 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" 
+rule "#25571 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 7, c1 == 1, 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" 
+rule "#25574 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4873 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25577 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25579 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#25588 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 5, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#25592 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 5, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25594 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25596 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 6, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25597 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 13, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25599 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 13, c1 == 11, 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" 
+rule "#25604 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 13, c1 == 6, 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" 
+rule "#25610 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 12, 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" 
+rule "#25611 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 11, 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" 
+rule "#25612 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25613 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25614 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 8, 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" 
+rule "#25615 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, c2 <= 1.5, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25616 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 6, 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" 
+rule "#25622 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, c2 <= 1.5, c3 > 4.5, c4 > 5.0, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 1, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 5, c3 == 1, c1 == 1, 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" 
+rule "#25634 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, c2 > 1.5, c3 > 3.0, c5 <= 10.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 4, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25636 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 4, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25638 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 4, c1 == 9, 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" 
+rule "#25640 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 4, c1 == 7, c3 == 13, 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" 
+rule "#25647 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, c5 > 4.5, c2 <= 7.5, c3 <= 11.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 4, c1 == 7, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25653 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 4, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25657 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 4, c1 == 2, 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" 
+rule "#25658 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4895 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25665 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 3, c1 == 7, 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" 
+rule "#25667 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 3, c1 == 6, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25676 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 3, c1 == 6, c3 == 3, 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" 
+rule "#25677 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 3, c1 == 6, c3 == 2, 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" 
+rule "#25685 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 2, c1 == 12, 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" 
+rule "#25687 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, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4905 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25690 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 2, c1 == 7, 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" 
+rule "#25694 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, c1 > 9.5, c2 > 3.0, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 2, c1 == 5, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4912 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25697 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 2, c1 == 5, c3 == 8, 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" 
+rule "#25700 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 2, c1 == 5, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25705 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 2, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 1, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25717 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25725 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 1, c1 == 3, c3 == 7, 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" 
+rule "#25729 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 1, c1 == 3, c3 == 3, 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" 
+rule "#25733 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)
+		 examples.Poker(c4 == 6, c5 == 9, c2 == 1, c1 == 1, 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" 
+rule "#25734 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4918 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25737 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 13, c3 == 10, 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" 
+rule "#25739 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, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 13, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 13, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25745 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 13, c3 == 2, 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" 
+rule "#25749 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, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25753 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 12, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25756 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 12, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 12, c3 == 3, 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" 
+rule "#25761 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25763 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25764 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25766 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25767 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 6, 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" 
+rule "#25768 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 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" 
+rule "#25769 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 4, 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" 
+rule "#25771 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25773 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25780 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 10, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25783 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 10, c3 == 6, 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" 
+rule "#25792 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, c2 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25796 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 10, c1 == 2, 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" 
+rule "#25801 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 9, c3 == 12, c1 == 11, 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" 
+rule "#25806 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, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 9, c3 == 12, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25812 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 9, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25814 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 9, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25819 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 9, c3 == 6, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25824 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 9, c3 == 6, c1 == 6, 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" 
+rule "#25831 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 9, c3 == 4, 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" 
+rule "#25832 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, c3 <= 9.5, c4 <= 4.0, c1 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 9, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25835 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 8, c3 == 13, 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" 
+rule "#25836 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 8, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25837 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 8, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25838 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 8, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25839 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 8, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25842 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 8, c3 == 6, 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" 
+rule "#25845 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 8, c3 == 3, 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" 
+rule "#25849 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4942 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25852 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 7, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 7, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25855 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25857 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25860 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 7, c1 == 1, 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" 
+rule "#25861 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, c4 > 2.5, c3 <= 3.0, c1 <= 11.5, c2 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 6, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#25864 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 6, c1 == 10, 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" 
+rule "#25867 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25869 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 6, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25877 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 5, c3 == 10, 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" 
+rule "#25878 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 <= 4.5, c2 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 5, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25879 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 5, c3 == 8, 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" 
+rule "#25888 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 5, c3 == 7, c1 == 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" 
+rule "#25891 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 5, c3 == 7, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25893 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 5, c3 == 6, 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" 
+rule "#25899 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 13, 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" 
+rule "#25900 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25901 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25903 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 9, 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" 
+rule "#25904 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 8, 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" 
+rule "#25905 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 7, 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" 
+rule "#25906 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25908 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25911 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 4, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25917 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 8, 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" 
+rule "#25918 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 <= 7.5, c1 <= 4.0, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25920 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25923 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25930 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 1, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 3, c1 == 1, c3 == 1, 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" 
+rule "#25938 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 <= 7.5, c1 <= 4.0, c2 <= 7.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 2, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4962 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25942 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 2, c3 == 8, 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" 
+rule "#25946 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 2, c3 == 4, 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" 
+rule "#25948 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 2, c3 == 2, 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" 
+rule "#25953 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 <= 12.0, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25956 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 1, c1 == 7, 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" 
+rule "#25958 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 1, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4971 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25961 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 1, c1 == 2, 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" 
+rule "#25962 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)
+		 examples.Poker(c4 == 6, c5 == 8, c2 == 1, c1 == 1, 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" 
+rule "#25964 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 13, c1 == 12, 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" 
+rule "#25965 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 13, c1 == 9, 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" 
+rule "#25968 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, c3 > 5.0, c1 <= 12.5, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25969 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 13, c1 == 7, 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" 
+rule "#25971 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, c3 > 5.0, c1 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 13, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4987 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25972 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25974 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25976 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25977 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 12, c1 == 12, 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" 
+rule "#25979 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 12, c1 == 10, 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" 
+rule "#25980 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 == 3, c5 <= 7.0, c2 > 2.0, c1 > 5.0, c3 > 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4991 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25981 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 12, c1 == 8, 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" 
+rule "#25984 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 == 3, c5 <= 7.0, c2 <= 2.0, c1 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4993 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#25988 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 12, c1 == 1, 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" 
+rule "#25992 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#25995 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 11, c1 == 7, 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" 
+rule "#25996 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 11, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#4996 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26000 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#4997 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26003 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 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" 
+rule "#26004 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26010 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26011 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 4, 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" 
+rule "#26014 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 2, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26026 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 10, c2 == 1, 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" 
+rule "#26027 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 <= 10.5, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 9, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26031 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 9, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26032 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 9, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26034 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 9, c1 == 6, 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" 
+rule "#26041 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 9, c1 == 3, c2 == 9, 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" 
+rule "#26049 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 9, c1 == 3, c2 == 1, 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" 
+rule "#26053 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 8, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26056 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#26058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 8, c1 == 7, 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" 
+rule "#26059 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26066 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 8, c1 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26072 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 8, c1 == 5, c2 == 1, 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" 
+rule "#26079 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 == 1, c4 > 1.0, c2 > 4.5, c1 <= 6.5, c3 <= 8.5, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26080 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26081 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26096 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#26100 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 5, c1 == 3, 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" 
+rule "#26102 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 5, c1 == 2, 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" 
+rule "#26103 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 5, c1 == 1, 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" 
+rule "#26104 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 4, c1 == 13, 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" 
+rule "#26105 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, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 4, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26107 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 4, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26109 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26111 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 4, c1 == 6, 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" 
+rule "#26113 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, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5019 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26120 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 3, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26121 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26123 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 3, c1 == 7, 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" 
+rule "#26125 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 3, c1 == 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" 
+rule "#26126 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, c3 <= 5.0, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 3, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26127 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 3, c1 == 3, 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" 
+rule "#26128 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, c3 > 3.0, c1 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26130 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26140 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26142 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 2, c1 == 1, c2 == 6, 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" 
+rule "#26156 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, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5030 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26157 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, c3 <= 1.5, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26158 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26159 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 9, 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" 
+rule "#26161 poker_hand = 3 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#26162 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 6, 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" 
+rule "#26166 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 5, c1 == 10, 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" 
+rule "#26175 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)
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26178 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 7, c3 == 1, c2 == 2, 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" 
+rule "#26180 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 == 2, c4 > 3.5, c1 <= 8.0, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26183 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 13, c2 == 10, 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" 
+rule "#26184 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 == 2, c4 > 3.5, c1 > 8.0, c3 <= 6.5, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 13, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26186 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 13, c2 == 7, 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" 
+rule "#26190 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 13, c2 == 3, 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" 
+rule "#26191 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 13, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5043 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26192 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 13, c2 == 1, 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" 
+rule "#26193 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 12, c2 == 13, 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" 
+rule "#26194 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 == 1, c5 > 1.0, c2 <= 9.0, c1 <= 11.0, c3 > 2.5, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26196 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 12, c2 == 10, 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" 
+rule "#26197 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 12, c2 == 9, 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" 
+rule "#26205 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 12, c2 == 1, 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" 
+rule "#26206 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 11, c3 == 13, 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" 
+rule "#26210 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 11, c3 == 9, 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" 
+rule "#26211 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 11, c3 == 8, 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" 
+rule "#26212 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 11, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26219 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 10, c3 == 13, 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" 
+rule "#26222 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 > 13, c4 > 3, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#5058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26227 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 10, c3 == 5, 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" 
+rule "#26228 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 10, c3 == 4, c2 == 13, 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" 
+rule "#26244 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)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 9, c2 == 13, 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" 
+rule "#26245 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26251 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 9, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#26252 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 9, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26253 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26256 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 9, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26259 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 8, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26261 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26263 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 8, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26265 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 8, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26267 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26270 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 7, s1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26271 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 7, s1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26273 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 7, s1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26275 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 5, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26279 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 5, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26281 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26282 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 5, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#26284 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 5, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26291 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 4, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26294 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 4, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26297 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 4, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#26298 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 4, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 4, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26301 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 3, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 3, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26308 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#26309 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 3, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 3, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26316 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26317 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26334 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 2, c2 == 3, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26336 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 2, c2 == 3, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26337 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26338 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 2, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26339 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26340 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 1, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26341 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 1, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26343 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 1, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26344 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26346 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 1, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#26351 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 6, c1 == 1, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26352 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 13, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26356 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 13, c1 == 9, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26365 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 13, c1 == 9, c3 == 4, 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" 
+rule "#26366 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 13, c1 == 9, c3 == 3, 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" 
+rule "#26370 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 13, c1 == 7, 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" 
+rule "#26373 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 == 3, c1 > 6.5, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26375 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 13, c1 == 2, 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" 
+rule "#26376 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 13, c1 == 1, 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" 
+rule "#26377 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26378 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 12, 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" 
+rule "#26379 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26380 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 10, 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" 
+rule "#26381 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 9, 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" 
+rule "#26385 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 8, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26390 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 8, c1 == 5, 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" 
+rule "#26395 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 7, 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" 
+rule "#26397 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 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" 
+rule "#26400 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 3, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26405 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 3, c1 == 7, 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" 
+rule "#26412 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 12, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5089 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26414 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 13, 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" 
+rule "#26415 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 11, 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" 
+rule "#26427 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5096 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26429 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 8, c3 == 3, 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" 
+rule "#26435 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 4, 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" 
+rule "#26436 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 11, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5105 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26440 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 10, c1 == 12, 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" 
+rule "#26441 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 10, c1 == 11, 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" 
+rule "#26442 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26444 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 10, c1 == 8, 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" 
+rule "#26446 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 10, c1 == 7, c3 == 12, 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" 
+rule "#26452 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 > 4.5, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 10, c1 == 7, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26458 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26463 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 10, c1 == 1, 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" 
+rule "#26466 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26467 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 9, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26468 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 9, c3 == 9, 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" 
+rule "#26470 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 9, c3 == 7, 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" 
+rule "#26472 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 9, c3 == 5, 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" 
+rule "#26477 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, c5 > 2.0, c3 <= 12.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 9, c3 == 3, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26478 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 9, c3 == 3, c1 == 9, 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" 
+rule "#26488 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, c5 > 2.0, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 9, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26500 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 8, c1 == 10, c3 == 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" 
+rule "#26503 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 8, c1 == 10, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26505 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26507 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 8, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#26508 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 8, c1 == 6, 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" 
+rule "#26512 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 8, c1 == 2, 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" 
+rule "#26513 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 8, c1 == 1, 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" 
+rule "#26515 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 7, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26517 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 7, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26518 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 7, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#26519 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 7, c3 == 8, 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" 
+rule "#26520 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 7, c3 == 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" 
+rule "#26523 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 7, c3 == 4, 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" 
+rule "#26525 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 7, c3 == 2, 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" 
+rule "#26528 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 12, 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" 
+rule "#26529 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26535 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 9, c1 == 9, 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" 
+rule "#26539 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 9, c1 == 5, 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" 
+rule "#26540 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26544 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26546 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#26550 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 6, c3 == 2, 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" 
+rule "#26552 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26553 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26556 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26561 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26571 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 2, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#26573 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26574 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#26576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 5, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26579 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26583 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 4, c3 == 7, 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" 
+rule "#26585 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 4, c3 == 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" 
+rule "#26586 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 4, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26596 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 13, c1 == 7, 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" 
+rule "#26600 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 13, c1 == 3, 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" 
+rule "#26610 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 12, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26613 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 12, c1 == 3, 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" 
+rule "#26614 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 12, c1 == 2, 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" 
+rule "#26617 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26619 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26620 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26622 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 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" 
+rule "#26623 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 4, 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" 
+rule "#26624 poker_hand = 3 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#26626 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 3, c3 == 1, 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" 
+rule "#26629 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26630 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 9, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26635 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 9, c1 == 9, 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" 
+rule "#26639 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 9, c1 == 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" 
+rule "#26652 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 7, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26654 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 7, c1 == 4, 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" 
+rule "#26659 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 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" 
+rule "#26660 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5166 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26661 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26662 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 2, 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" 
+rule "#26669 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 1, c1 == 7, 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" 
+rule "#26674 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 2, c3 == 1, c1 == 2, 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" 
+rule "#26676 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26681 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 8, 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" 
+rule "#26682 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 7, 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" 
+rule "#26684 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26690 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 2, c1 == 10, 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" 
+rule "#26695 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 2, c1 == 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" 
+rule "#26698 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)
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 2, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26700 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 5, c2 == 1, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26702 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26706 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 10, c1 == 11, 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" 
+rule "#26711 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 10, c1 == 6, 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" 
+rule "#26718 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26719 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26724 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 3, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26733 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 3, c1 == 3, 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" 
+rule "#26736 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 2, 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" 
+rule "#26737 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 13, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26738 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26749 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 12, c1 == 11, c2 == 4, 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" 
+rule "#26752 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 12, c1 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26754 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 12, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26755 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 12, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26759 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 12, c1 == 4, 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" 
+rule "#26762 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 12, c1 == 1, 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" 
+rule "#26763 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 11, c1 == 13, 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" 
+rule "#26766 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26768 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 11, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26773 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 11, c1 == 3, 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" 
+rule "#26774 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 11, c1 == 2, 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" 
+rule "#26775 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 11, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26776 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 10, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26777 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 10, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26780 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 10, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 10, c1 == 6, 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" 
+rule "#26784 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 10, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26786 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 10, c1 == 3, 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" 
+rule "#26790 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 9, c1 == 12, 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" 
+rule "#26791 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 9, c1 == 11, 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" 
+rule "#26794 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 9, c1 == 8, 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" 
+rule "#26795 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 9, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5192 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26799 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 9, c1 == 3, 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" 
+rule "#26800 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 9, c1 == 2, 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" 
+rule "#26802 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, c3 > 1.5, c1 <= 12, c4 <= 12.5, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5196 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26804 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 8, c1 == 11, 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" 
+rule "#26806 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, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 8, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5200 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26808 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 8, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26811 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 8, c1 == 4, 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" 
+rule "#26814 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 8, c1 == 1, 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" 
+rule "#26816 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 7, c1 == 10, 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" 
+rule "#26831 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 7, c1 == 3, c2 == 7, 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" 
+rule "#26832 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 7, c1 == 3, c2 == 6, 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" 
+rule "#26837 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 7, c1 == 3, c2 == 1, 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" 
+rule "#26842 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 5, c1 == 12, 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" 
+rule "#26843 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5214 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26844 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 5, c1 == 10, 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" 
+rule "#26851 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 5, c1 == 3, 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" 
+rule "#26855 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 3, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26857 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 3, c2 == 11, 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" 
+rule "#26859 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26860 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26861 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26865 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 3, c2 == 3, 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" 
+rule "#26870 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 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" 
+rule "#26874 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 10, c1 == 9, 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" 
+rule "#26880 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 10, c1 == 4, 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" 
+rule "#26884 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26885 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26887 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 6, 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" 
+rule "#26888 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 5, 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" 
+rule "#26891 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 4, c1 == 11, 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" 
+rule "#26896 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 4, c1 == 6, 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" 
+rule "#26899 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 4, c1 == 3, 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" 
+rule "#26902 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 2, c2 == 3, 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" 
+rule "#26907 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 1, c1 == 11, 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" 
+rule "#26911 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 1, c1 == 7, 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" 
+rule "#26917 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)
+		 examples.Poker(c4 == 6, c5 == 4, c3 == 1, c1 == 1, 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" 
+rule "#26918 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 13, c2 == 13, 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" 
+rule "#26920 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 13, c2 == 11, 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" 
+rule "#26921 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 13, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5244 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26931 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 13, 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" 
+rule "#26932 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 12, 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" 
+rule "#26933 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5251 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26935 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 9, 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" 
+rule "#26937 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 7, 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" 
+rule "#26940 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 5, c2 == 12, 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" 
+rule "#26950 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 5, c2 == 2, 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" 
+rule "#26952 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 4, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26953 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 4, c2 == 12, 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" 
+rule "#26954 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 4, c2 == 11, 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" 
+rule "#26955 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 4, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5260 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26965 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 12, c1 == 3, 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" 
+rule "#26968 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 11, c1 == 13, 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" 
+rule "#26970 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 11, c1 == 11, 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" 
+rule "#26974 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 11, c1 == 7, 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" 
+rule "#26975 poker_hand = 2 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 11, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#5268 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#26976 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26980 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26982 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26983 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#26990 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 12, c1 == 6, 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" 
+rule "#26996 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 11, 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" 
+rule "#27001 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 6, 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" 
+rule "#27003 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 4, 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" 
+rule "#27005 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 2, 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" 
+rule "#27006 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 9, c2 == 1, 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" 
+rule "#27010 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 8, s3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27013 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 11, 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" 
+rule "#27015 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27016 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27018 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 6, 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" 
+rule "#27019 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 5, 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" 
+rule "#27020 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 4, 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" 
+rule "#27021 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 3, 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" 
+rule "#27024 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 2, c2 == 11, 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" 
+rule "#27029 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27035 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 7, c1 == 1, 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" 
+rule "#27036 poker_hand = 2 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 6, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27037 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 6, c2 == 12, 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" 
+rule "#27038 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 6, c2 == 11, 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" 
+rule "#27040 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27045 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 6, c2 == 4, 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" 
+rule "#27046 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 == 4, c4 <= 13, c1 > 2.0, c5 > 11.0, c2 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 6, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27048 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 6, c2 == 1, 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" 
+rule "#27049 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 5, c1 == 13, 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" 
+rule "#27052 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 5, c1 == 10, 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" 
+rule "#27053 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27054 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 5, c1 == 8, 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" 
+rule "#27055 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 5, c1 == 7, 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" 
+rule "#27064 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 5, c1 == 2, c2 == 9, 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" 
+rule "#27069 poker_hand = 4 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 5, c1 == 2, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#27076 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 4, c2 == 11, 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" 
+rule "#27077 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 4, c2 == 10, 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" 
+rule "#27084 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 == 2, c1 <= 13, c2 > 1.0, c5 <= 6.5, c3 <= 13, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 4, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#5310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27087 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 13, 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" 
+rule "#27089 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 11, 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" 
+rule "#27093 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 8, c1 == 12, 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" 
+rule "#27102 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 == 1, c1 > 1.0, c2 > 2.0, c5 <= 12.0, c3 <= 11.5, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 8, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#27105 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 7, 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" 
+rule "#27107 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 5, 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" 
+rule "#27108 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 == 1, c1 > 1.0, c2 > 2.0, c5 > 12.0, c3 <= 10.5, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#5318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27111 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 1, c1 == 13, 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" 
+rule "#27123 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 == 1, c1 > 1.0, c2 <= 2.0, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 3, c2 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27125 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27127 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 2, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27128 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 2, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 2, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27135 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 2, c1 == 2, 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" 
+rule "#27136 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 2, c1 == 1, 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" 
+rule "#27139 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 1, c1 == 11, 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" 
+rule "#27149 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 1, c1 == 8, c2 == 6, 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" 
+rule "#27150 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 1, c1 == 8, c2 == 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" 
+rule "#27158 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 1, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27159 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 1, c1 == 3, 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" 
+rule "#27160 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)
+		 examples.Poker(c4 == 6, c5 == 3, c3 == 1, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27164 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 13, c1 == 11, 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" 
+rule "#27166 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 13, c1 == 9, 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" 
+rule "#27170 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 13, c1 == 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" 
+rule "#27172 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, c1 <= 11.5, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27174 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 13, c1 == 1, 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" 
+rule "#27176 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27177 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 11, 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" 
+rule "#27178 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27181 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 6, c1 == 11, 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" 
+rule "#27193 poker_hand = 2 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27195 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27196 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27198 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 2, 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" 
+rule "#27201 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 1, c1 == 11, 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" 
+rule "#27202 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5344 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27211 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 12, c3 == 1, c1 == 1, 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" 
+rule "#27212 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 13, 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" 
+rule "#27213 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 12, 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" 
+rule "#27214 poker_hand = 2 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#5353 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27215 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 10, 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" 
+rule "#27217 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5355 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27219 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 6, 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" 
+rule "#27230 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 3, c1 == 5, 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" 
+rule "#27231 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 3, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27232 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 3, c1 == 3, 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" 
+rule "#27234 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 11, c3 == 3, c1 == 1, 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" 
+rule "#27238 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 10, c1 == 12, 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" 
+rule "#27239 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 10, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27240 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 10, c1 == 10, 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" 
+rule "#27241 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 10, c1 == 9, 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" 
+rule "#27251 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, c1 > 1.0, c2 <= 3.0, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27253 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 9, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27254 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 9, c1 == 9, 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" 
+rule "#27256 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, c1 > 1.0, c2 <= 3.0, c3 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 9, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27259 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27260 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27263 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 8, c3 == 13, 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" 
+rule "#27264 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, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 8, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27265 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 8, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27266 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 8, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27268 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 8, c3 == 8, 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" 
+rule "#27271 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 8, c3 == 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" 
+rule "#27273 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 8, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27276 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27278 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27280 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27281 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27284 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27285 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27297 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 3, c1 == 2, 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" 
+rule "#27298 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 7, c3 == 3, c1 == 1, 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" 
+rule "#27302 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 6, c1 == 12, 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" 
+rule "#27305 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 6, c1 == 9, 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" 
+rule "#27307 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 == 2, c3 > 11.5, c1 <= 12.5, c2 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27309 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 6, c1 == 5, 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" 
+rule "#27312 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 == 2, c3 > 11.5, c1 <= 12.5, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 6, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27316 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 11, 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" 
+rule "#27320 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 10, c3 == 10, 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" 
+rule "#27326 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 10, c3 == 4, 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" 
+rule "#27333 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 6, 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" 
+rule "#27340 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 4, c3 == 8, 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" 
+rule "#27344 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 4, c3 == 4, 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" 
+rule "#27353 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27357 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 3, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#27360 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 3, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27362 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 5, c1 == 1, 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" 
+rule "#27369 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27371 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 4, c1 == 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" 
+rule "#27372 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 4, c1 == 4, 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" 
+rule "#27375 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5400 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27376 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 13, 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" 
+rule "#27385 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 10, c1 == 7, 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" 
+rule "#27386 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 10, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27393 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 8, 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" 
+rule "#27395 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5407 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27396 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 <= 13, c4 > 11.0, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27398 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27399 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27400 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 3, c3 == 1, 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" 
+rule "#27401 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 == 4, c2 > 12.0, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27402 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 12, 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" 
+rule "#27405 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 11, c1 == 11, 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" 
+rule "#27408 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 <= 11.0, c2 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27417 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27418 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27419 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27420 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27426 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27432 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 5, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#27435 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 2, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27438 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27439 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 12, 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" 
+rule "#27440 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 11, 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" 
+rule "#27442 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 > 2.0, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5418 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27445 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 6, 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" 
+rule "#27446 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 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" 
+rule "#27454 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)
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 3, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27455 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 2, c2 == 1, c1 == 3, c3 == 6, 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" 
+rule "#27464 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 12, c1 == 13, 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" 
+rule "#27467 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 12, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27469 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 12, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27473 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 12, c1 == 4, 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" 
+rule "#27480 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5426 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27482 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 8, c1 == 13, 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" 
+rule "#27487 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, c4 > 3.5, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 8, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27495 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 7, 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" 
+rule "#27498 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 4, 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" 
+rule "#27499 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27500 poker_hand = 5 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#27501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 11, c3 == 1, 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" 
+rule "#27502 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 13, 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" 
+rule "#27503 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 12, 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" 
+rule "#27506 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 11, c3 == 11, 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" 
+rule "#27508 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 11, c3 == 9, 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" 
+rule "#27509 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 11, c3 == 8, 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" 
+rule "#27514 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, c4 > 3.0, c3 > 3.0, c5 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 11, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27519 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 8, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27523 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 8, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27529 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27531 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 8, c3 == 1, 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" 
+rule "#27532 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, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27536 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27537 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 10, c1 == 2, 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" 
+rule "#27541 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 11, 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" 
+rule "#27549 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 9, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5452 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27551 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 > 1.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5454 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27553 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 9, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27555 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27556 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 4, 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" 
+rule "#27561 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 9, c3 == 3, 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" 
+rule "#27564 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 13, 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" 
+rule "#27565 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 12, 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" 
+rule "#27566 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 11, 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" 
+rule "#27569 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 8, 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" 
+rule "#27573 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 4, 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" 
+rule "#27575 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 8, c3 == 1, 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" 
+rule "#27578 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5466 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27579 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 11, 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" 
+rule "#27581 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 9, 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" 
+rule "#27586 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, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 8, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27587 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 8, c3 == 8, 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" 
+rule "#27595 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 7, 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" 
+rule "#27597 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27598 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 4, 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" 
+rule "#27600 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 2, 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" 
+rule "#27604 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 1, c3 == 10, 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" 
+rule "#27607 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 == 1, c3 > 12.0, c1 > 9.0, c2 <= 8, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 7, c1 == 1, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27616 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 6, c3 == 11, 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" 
+rule "#27618 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27621 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 6, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#27622 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 6, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27623 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 6, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27624 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 6, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27627 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 5, c1 == 13, 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" 
+rule "#27628 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 5, c1 == 12, 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" 
+rule "#27632 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 5, c1 == 8, 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" 
+rule "#27633 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 5, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27637 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 5, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27646 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 5, c1 == 1, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27648 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 5, c1 == 1, c3 == 4, 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" 
+rule "#27650 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 5, c1 == 1, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 4, c3 == 13, 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" 
+rule "#27663 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 <= 7.5, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 4, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27665 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 3, c1 == 13, 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" 
+rule "#27671 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 3, c1 == 7, 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" 
+rule "#27673 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 <= 7.5, c2 <= 8.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 3, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5485 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27681 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5486 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27683 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 2, c3 == 8, 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" 
+rule "#27684 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 2, c3 == 7, 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" 
+rule "#27685 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, c5 <= 11.0, c3 > 1.0, c1 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 2, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27690 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 2, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 1, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27693 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27696 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 1, c1 == 8, 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" 
+rule "#27699 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 1, c1 == 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" 
+rule "#27701 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)
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 1, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27703 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 6, c5 == 1, c2 == 1, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#27704 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 13, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#27707 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 13, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27708 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27709 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27710 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 10, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27727 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 10, c3 == 6, 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" 
+rule "#27729 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 10, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27732 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 10, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27734 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27737 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 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" 
+rule "#27739 poker_hand = 5 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#27740 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 12, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27743 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 11, c3 == 12, 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" 
+rule "#27744 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 == 2, c1 > 1.0, c2 > 13, c3 > 5.5, c4 <= 8.5, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 11, c3 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27755 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 11, c3 == 11, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27757 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 11, c3 == 10, 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" 
+rule "#27767 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 10, c3 == 13, 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" 
+rule "#27769 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 10, c3 == 11, 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" 
+rule "#27770 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27772 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 10, c3 == 8, 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" 
+rule "#27776 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 10, c3 == 4, 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" 
+rule "#27780 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 13, 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" 
+rule "#27785 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 12, c3 == 9, 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" 
+rule "#27787 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 12, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5524 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27796 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, c5 <= 13, c3 <= 2.0, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27797 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 8, 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" 
+rule "#27802 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 3, 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" 
+rule "#27803 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 9, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5530 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27807 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, c1 > 2.0, c5 > 1.5, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 8, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27817 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 8, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 7, c3 == 13, 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" 
+rule "#27820 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, c1 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27823 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 7, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27831 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 7, c3 == 6, c2 == 7, 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" 
+rule "#27834 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 7, c3 == 6, c2 == 4, 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" 
+rule "#27841 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 7, c3 == 2, 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" 
+rule "#27842 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 7, c3 == 1, 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" 
+rule "#27843 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 6, c2 == 13, 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" 
+rule "#27844 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 6, c2 == 12, 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" 
+rule "#27847 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, c2 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27848 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 6, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27852 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 6, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27854 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 6, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27855 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 6, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27857 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 4, c2 == 13, 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" 
+rule "#27858 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, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 4, c2 == 8, 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" 
+rule "#27866 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5543 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27867 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, c1 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 4, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27869 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 4, c2 == 1, 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" 
+rule "#27877 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27879 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 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" 
+rule "#27880 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 4, 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" 
+rule "#27887 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 3, c2 == 7, 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" 
+rule "#27892 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 3, c2 == 2, 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" 
+rule "#27894 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 2, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27897 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 1, c2 == 12, 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" 
+rule "#27898 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 1, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27900 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 1, c2 == 9, c3 == 13, 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" 
+rule "#27911 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 1, c2 == 9, c3 == 2, 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" 
+rule "#27915 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)
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 1, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27916 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 13, c5 == 1, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#27922 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 13, c5 == 12, 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" 
+rule "#27928 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 13, c5 == 6, 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" 
+rule "#27930 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 13, c5 == 4, 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" 
+rule "#27933 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 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 13, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27934 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 13, 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" 
+rule "#27935 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 12, 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" 
+rule "#27937 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 10, 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" 
+rule "#27938 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 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#27939 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27941 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27942 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 5, 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" 
+rule "#27943 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 4, 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" 
+rule "#27944 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, c2 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5566 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27946 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5567 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#27948 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 12, 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" 
+rule "#27949 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 11, 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" 
+rule "#27950 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 10, 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" 
+rule "#27953 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27958 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 4, c5 == 11, 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" 
+rule "#27967 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 4, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27969 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 3, 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" 
+rule "#27971 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 2, c5 == 12, 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" 
+rule "#27972 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 2, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27975 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 2, c5 == 8, 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" 
+rule "#27983 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 11, c3 == 1, 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" 
+rule "#27984 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 == 3, c2 > 1.0, c3 <= 5.0, c1 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27992 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 9, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#27999 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 9, c5 == 2, 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" 
+rule "#28005 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 == 3, c2 > 1.0, c3 <= 5.0, c1 > 5.5, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5581 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28006 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 3, 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" 
+rule "#28008 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 1, c5 == 13, 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" 
+rule "#28010 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 1, c5 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5587 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28011 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 == 3, c2 > 1.0, c3 > 5.0, c1 <= 5.5, c4 <= 1.0, c5 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 10, c3 == 1, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28021 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 9, c5 == 13, 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" 
+rule "#28027 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 9, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5590 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28028 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 9, c5 == 6, 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" 
+rule "#28029 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 9, c5 == 5, 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" 
+rule "#28031 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 9, c5 == 3, 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" 
+rule "#28034 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 8, c5 == 13, 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" 
+rule "#28035 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 8, c5 == 12, 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" 
+rule "#28038 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 8, c5 == 9, 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" 
+rule "#28040 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 8, c5 == 7, 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" 
+rule "#28045 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 8, c5 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28046 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 8, c5 == 6, c3 == 8, 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" 
+rule "#28054 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 8, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 8, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28059 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 7, c3 == 13, 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" 
+rule "#28060 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 7, c3 == 12, 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" 
+rule "#28062 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 7, c3 == 10, 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" 
+rule "#28064 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 7, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5612 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28067 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 7, c3 == 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" 
+rule "#28068 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 7, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28069 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 7, c3 == 3, 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" 
+rule "#28070 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28072 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 13, 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" 
+rule "#28073 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 12, 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" 
+rule "#28076 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 9, 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" 
+rule "#28079 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28081 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28091 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 2, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28095 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 2, c5 == 1, 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" 
+rule "#28097 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 1, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28101 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 6, c3 == 1, c5 == 8, 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" 
+rule "#28111 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 5, c3 == 11, 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" 
+rule "#28116 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 == 3, c3 <= 11.0, c1 <= 1.5, c2 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 5, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#28117 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 5, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#28120 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 5, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28123 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28124 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 11, 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" 
+rule "#28125 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 10, 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" 
+rule "#28131 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 7, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28134 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 7, c5 == 7, 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" 
+rule "#28135 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 > 1.5, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 7, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28141 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28142 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 5, 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" 
+rule "#28151 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 3, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28154 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 3, c5 == 3, 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" 
+rule "#28157 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 4, c3 == 2, 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" 
+rule "#28159 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 <= 9.5, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 3, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 3, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28164 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 3, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28165 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 3, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28172 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28175 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28176 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28177 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#28178 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28179 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28181 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28182 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28184 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 2, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28185 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 1, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28186 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 1, c5 == 12, 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" 
+rule "#28188 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 1, c5 == 10, 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" 
+rule "#28193 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 1, c5 == 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" 
+rule "#28195 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 1, c5 == 3, 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" 
+rule "#28196 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)
+		 examples.Poker(c4 == 5, c1 == 12, c2 == 1, c5 == 2, 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" 
+rule "#28200 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 11, 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" 
+rule "#28203 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 8, 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" 
+rule "#28204 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28205 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28206 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 5, 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" 
+rule "#28207 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, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28209 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 2, 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" 
+rule "#28210 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 13, c3 == 1, 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" 
+rule "#28214 poker_hand = 3 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 11, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#28216 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 11, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28218 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 11, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28221 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 11, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28231 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 10, s1 == 1, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28235 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 10, s1 == 1, c3 == 6, 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" 
+rule "#28239 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 10, s1 == 1, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28242 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 9, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28244 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 9, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 9, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28247 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 9, c2 == 7, 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" 
+rule "#28257 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 9, c2 == 1, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28263 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 9, c2 == 1, c3 == 3, 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" 
+rule "#28275 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 12, c3 == 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" 
+rule "#28276 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 12, c3 == 4, 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" 
+rule "#28280 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28282 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 9, 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" 
+rule "#28288 poker_hand = 3 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#28293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 8, c3 == 3, 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" 
+rule "#28295 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 8, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5669 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28298 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 7, c3 == 11, 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" 
+rule "#28304 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28305 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 7, c3 == 4, 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" 
+rule "#28312 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 3, 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" 
+rule "#28313 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, c1 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 8, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28316 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 7, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28319 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 7, c3 == 9, 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" 
+rule "#28323 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 7, c3 == 5, 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" 
+rule "#28330 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 == 1, c2 > 5.0, c5 <= 7.0, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 7, c3 == 1, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 7, c3 == 1, c2 == 5, 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" 
+rule "#28341 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 == 4, c3 > 2.0, c5 > 1.5, c4 <= 6.5, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 6, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28342 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 6, c3 == 11, 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" 
+rule "#28345 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, c5 <= 2.5, c4 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 6, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28353 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 5, c2 == 13, 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" 
+rule "#28355 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 5, c2 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#28360 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 5, c2 == 12, c3 == 7, 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" 
+rule "#28370 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 5, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28371 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28377 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 5, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28378 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28379 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 12, 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" 
+rule "#28380 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 11, 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" 
+rule "#28389 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 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 5, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5700 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28395 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, c4 <= 7.5, c2 <= 5.0, c5 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 5, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#5701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28399 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 4, 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" 
+rule "#28401 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 4, c2 == 2, 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" 
+rule "#28404 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 3, c2 == 12, 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" 
+rule "#28405 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 3, c2 == 11, 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" 
+rule "#28413 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 > 2.0, c4 <= 4.5, c2 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28414 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 3, c2 == 2, 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" 
+rule "#28419 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, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 13, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28427 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 13, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28429 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28432 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28433 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28434 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 5, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28447 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 5, c3 == 2, 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" 
+rule "#28449 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 4, 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" 
+rule "#28450 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 <= 2.0, c2 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 2, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28462 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 2, c3 == 2, 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" 
+rule "#28464 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 2, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28465 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28466 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28467 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 11, 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" 
+rule "#28468 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 9, 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" 
+rule "#28470 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 8, c3 == 13, 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" 
+rule "#28475 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 8, c3 == 8, 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" 
+rule "#28481 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)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 8, c3 == 2, 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" 
+rule "#28483 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 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28484 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28487 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 11, c5 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28491 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 13, c2 == 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" 
+rule "#28492 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, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 13, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28496 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28499 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28501 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 13, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28502 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28503 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 12, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28505 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 12, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28514 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 12, c3 == 10, c2 == 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" 
+rule "#28517 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 12, c3 == 10, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28519 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 12, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28520 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 12, c3 == 8, 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" 
+rule "#28523 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 12, c3 == 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" 
+rule "#28524 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 12, c3 == 4, 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" 
+rule "#28532 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 9, 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" 
+rule "#28533 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5732 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28535 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 6, 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" 
+rule "#28536 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 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" 
+rule "#28537 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 4, 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" 
+rule "#28538 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 11, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28541 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 10, c2 == 13, 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" 
+rule "#28542 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 <= 3.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 10, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5745 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28546 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 10, c2 == 8, 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" 
+rule "#28549 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 10, c2 == 5, 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" 
+rule "#28550 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 10, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#5748 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28551 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 10, c2 == 3, 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" 
+rule "#28555 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 9, c3 == 12, 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" 
+rule "#28557 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 9, c3 == 10, 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" 
+rule "#28558 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 9, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28563 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 9, c3 == 4, 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" 
+rule "#28564 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 9, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28565 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 9, c3 == 2, 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" 
+rule "#28567 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 13, 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" 
+rule "#28571 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 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28577 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 8, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#28578 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 8, c2 == 7, 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" 
+rule "#28593 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 6, c2 == 6, 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" 
+rule "#28596 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 6, c2 == 3, 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" 
+rule "#28602 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5765 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28603 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 8, c3 == 1, 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" 
+rule "#28606 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5769 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28608 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 7, c3 == 9, 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" 
+rule "#28612 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 7, c3 == 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" 
+rule "#28614 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 7, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5773 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28617 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 13, 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" 
+rule "#28619 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 11, 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" 
+rule "#28622 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, c1 > 2.0, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28624 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 6, 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" 
+rule "#28625 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 5, 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" 
+rule "#28627 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, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28628 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 2, 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" 
+rule "#28629 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 6, c3 == 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" 
+rule "#28632 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 == 3, c5 > 11.0, c3 <= 8.0, c1 <= 9.0, c2 > 1, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 5, c2 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#28642 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 5, c2 == 12, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28644 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 5, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28649 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 5, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#28659 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 5, c2 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#28660 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 5, c2 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#28664 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 5, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28667 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28668 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 12, 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" 
+rule "#28669 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 11, 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" 
+rule "#28671 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 9, 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" 
+rule "#28674 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 6, 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" 
+rule "#28675 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 5, 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" 
+rule "#28678 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 == 2, c4 > 1.5, c2 <= 13, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28681 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 2, c2 == 10, 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" 
+rule "#28682 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 4, c3 == 2, c2 == 9, 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" 
+rule "#28698 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 13, c3 == 7, 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" 
+rule "#28702 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 <= 13, c5 > 1.0, c3 <= 2.5, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 13, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28708 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 <= 13, c5 <= 1.0, c2 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5801 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28711 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 6, 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" 
+rule "#28712 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 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" 
+rule "#28713 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 4, 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" 
+rule "#28714 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 3, 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" 
+rule "#28715 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28716 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 3, c2 == 1, 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" 
+rule "#28718 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 12, 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" 
+rule "#28720 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 10, 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" 
+rule "#28721 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 9, 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" 
+rule "#28722 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5813 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28724 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 6, 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" 
+rule "#28726 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28728 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 2, 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" 
+rule "#28732 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 1, c2 == 10, 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" 
+rule "#28737 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 1, c2 == 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" 
+rule "#28738 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)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 2, c3 == 1, c2 == 4, 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" 
+rule "#28743 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 1, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28744 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 1, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28747 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 1, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28755 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 1, c3 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28765 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 10, c5 == 1, c3 == 2, c2 == 1, 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" 
+rule "#28767 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 == 3, c3 > 2.0, c1 > 3.0, c2 > 2.0, c4 <= 2.5, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#28771 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 9, 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" 
+rule "#28772 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 8, 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" 
+rule "#28775 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 == 3, c3 <= 2.0, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#28776 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28777 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28779 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 13, c2 == 1, 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" 
+rule "#28781 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, c1 > 1.0, c3 > 2.0, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28786 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 12, c3 == 7, 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" 
+rule "#28787 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 12, c3 == 6, 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" 
+rule "#28790 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 12, c3 == 3, 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" 
+rule "#28791 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 12, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28797 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 11, c2 == 13, c3 == 9, 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" 
+rule "#28803 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 11, c2 == 13, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 11, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28815 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 11, c2 == 3, 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" 
+rule "#28822 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 == 1, c2 <= 3.0, c1 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 10, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28823 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 10, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28829 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28832 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 9, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28834 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 9, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28835 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 9, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#28837 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 9, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28843 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 9, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28844 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 13, 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" 
+rule "#28845 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 12, 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" 
+rule "#28851 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 == 1, c2 > 3.0, c3 > 2.0, c4 > 2.0, c1 <= 2.0, c5 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28853 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 4, 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" 
+rule "#28856 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 8, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28857 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 13, 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" 
+rule "#28859 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 11, 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" 
+rule "#28860 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#28862 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 8, 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" 
+rule "#28864 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28866 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 4, 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" 
+rule "#28868 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 7, c2 == 2, 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" 
+rule "#28870 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 6, c2 == 13, 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" 
+rule "#28871 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 6, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 6, c2 == 10, 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" 
+rule "#28877 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 6, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28879 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 6, c2 == 4, 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" 
+rule "#28887 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 6, c2 == 3, c3 == 6, 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" 
+rule "#28889 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 6, c2 == 3, c3 == 4, 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" 
+rule "#28893 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 6, c2 == 2, 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" 
+rule "#28896 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 4, c3 == 13, 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" 
+rule "#28900 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 4, c3 == 9, 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" 
+rule "#28904 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28909 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 3, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28913 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 3, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28915 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 3, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 3, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28921 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 3, c3 == 5, c2 == 9, 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" 
+rule "#28923 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 3, c3 == 5, c2 == 7, 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" 
+rule "#28930 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 3, c3 == 4, 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" 
+rule "#28932 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, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 3, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28934 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 2, c3 == 13, 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" 
+rule "#28937 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 2, c3 == 10, 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" 
+rule "#28940 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 2, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28941 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 2, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28942 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 2, c3 == 5, 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" 
+rule "#28943 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 2, c3 == 4, 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" 
+rule "#28944 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 2, c3 == 3, 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" 
+rule "#28945 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 2, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28949 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 1, c2 == 11, 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" 
+rule "#28954 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 1, c2 == 10, c3 == 9, 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" 
+rule "#28956 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, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 1, c2 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28961 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 1, c2 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28963 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 1, c2 == 9, 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" 
+rule "#28964 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 1, c2 == 8, 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" 
+rule "#28969 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)
+		 examples.Poker(c4 == 5, c1 == 9, c5 == 1, c2 == 3, 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" 
+rule "#28972 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 13, c3 == 13, 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" 
+rule "#28975 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 13, c3 == 10, 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" 
+rule "#28977 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 13, c3 == 8, 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" 
+rule "#28989 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, c1 > 8.0, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#28990 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 8, 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" 
+rule "#28996 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 5, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28998 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 5, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29006 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 4, 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" 
+rule "#29007 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 3, 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" 
+rule "#29008 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 2, 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" 
+rule "#29011 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 1, c3 == 11, 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" 
+rule "#29021 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 12, c5 == 1, c3 == 1, 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" 
+rule "#29025 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 11, c3 == 10, 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" 
+rule "#29034 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 11, c3 == 9, c5 == 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" 
+rule "#29038 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 11, c3 == 9, c5 == 1, 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" 
+rule "#29041 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 11, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29042 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 11, c3 == 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" 
+rule "#29045 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 11, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29046 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 11, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29047 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 10, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29048 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 10, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29052 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 10, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29053 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 10, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29055 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 10, c3 == 5, 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" 
+rule "#29056 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 10, c3 == 4, 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" 
+rule "#29060 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 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" 
+rule "#29061 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29063 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 10, 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" 
+rule "#29065 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 8, 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" 
+rule "#29068 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 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" 
+rule "#29071 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5907 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29072 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 9, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5908 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29075 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 8, c3 == 11, 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" 
+rule "#29076 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 8, c3 == 10, 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" 
+rule "#29079 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, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 8, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29080 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 8, c3 == 6, 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" 
+rule "#29081 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 == 2, c2 <= 13, c1 > 4.0, c4 > 4.5, c3 > 4.5, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29083 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 8, c3 == 3, 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" 
+rule "#29084 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 8, c3 == 2, 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" 
+rule "#29085 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, c1 <= 4.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 8, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29089 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 7, c5 == 10, 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" 
+rule "#29108 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, c4 <= 5.0, c1 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 6, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5929 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29109 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 6, c5 == 3, 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" 
+rule "#29111 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 6, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5931 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29112 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 5, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29116 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 5, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29117 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 5, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29118 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 5, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29120 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 5, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#29123 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 5, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29124 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29126 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29127 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 11, 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" 
+rule "#29131 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 10, c5 == 10, 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" 
+rule "#29132 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 10, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29135 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 10, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29142 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 8, 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" 
+rule "#29143 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 7, 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" 
+rule "#29146 poker_hand = 2 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29147 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 3, 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" 
+rule "#29148 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29149 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29157 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 8, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29160 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 8, c3 == 8, 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" 
+rule "#29166 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 8, c3 == 2, 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" 
+rule "#29168 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29171 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 3, 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" 
+rule "#29177 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 2, c3 == 9, 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" 
+rule "#29183 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 3, c5 == 2, c3 == 3, 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" 
+rule "#29188 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 12, 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" 
+rule "#29190 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 10, 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" 
+rule "#29192 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 8, 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" 
+rule "#29193 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 7, 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" 
+rule "#29203 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 == 3, c1 > 6.5, c4 > 2.5, c3 > 5.5, c2 <= 10.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#29204 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 5, c5 == 4, 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" 
+rule "#29209 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 4, c5 == 12, 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" 
+rule "#29216 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 4, c5 == 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" 
+rule "#29221 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 2, c3 == 3, 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" 
+rule "#29224 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29226 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 11, 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" 
+rule "#29234 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 7, c5 == 9, 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" 
+rule "#29235 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)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 7, c5 == 8, 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" 
+rule "#29243 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, c2 <= 12.0, c1 > 5.0, c3 > 4.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29245 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 8, c2 == 1, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29253 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 5, 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" 
+rule "#29258 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, c2 <= 12.0, c1 > 5.0, c3 <= 4.0, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29264 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, c2 <= 12.0, c1 > 5.0, c3 <= 4.0, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 2, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29271 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 2, c5 == 2, 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" 
+rule "#29279 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 1, c5 == 7, 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" 
+rule "#29284 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 13, c2 == 1, c5 == 2, 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" 
+rule "#29286 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5972 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29287 poker_hand = 2 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29291 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 8, 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" 
+rule "#29292 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29294 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29298 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 3, c5 == 11, 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" 
+rule "#29306 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 3, c5 == 3, 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" 
+rule "#29309 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 2, 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" 
+rule "#29310 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 12, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 12, 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" 
+rule "#29313 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 11, 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" 
+rule "#29317 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 <= 8, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29318 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 6, 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" 
+rule "#29320 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5983 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29321 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, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#5985 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29322 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 > 2.0, c4 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 11, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29328 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 10, c2 == 9, 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" 
+rule "#29329 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 10, c2 == 8, 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" 
+rule "#29336 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 10, c2 == 1, 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" 
+rule "#29337 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29338 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 12, 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" 
+rule "#29339 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 11, 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" 
+rule "#29341 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#5995 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29344 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29347 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 3, c2 == 13, 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" 
+rule "#29355 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 3, c2 == 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" 
+rule "#29357 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29360 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29361 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 9, c5 == 1, 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" 
+rule "#29368 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 8, c2 == 7, 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" 
+rule "#29370 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 8, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29373 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 8, c2 == 2, 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" 
+rule "#29380 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 7, c2 == 13, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29383 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 7, c2 == 13, c5 == 5, 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" 
+rule "#29388 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 7, c2 == 12, 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" 
+rule "#29391 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 7, c2 == 9, 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" 
+rule "#29395 poker_hand = 6 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 7, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
 end
 
-rule "#6006 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29397 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 7, c2 == 3, 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" 
+rule "#29399 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 <= 12.5, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 7, c2 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6010 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29400 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 6, c5 == 13, 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" 
+rule "#29402 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 6, c5 == 11, 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" 
+rule "#29408 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 6, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6013 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29411 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 6, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29413 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 5, c2 == 13, 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" 
+rule "#29414 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 5, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6017 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29417 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 5, c2 == 9, 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" 
+rule "#29423 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 5, c2 == 3, 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" 
+rule "#29427 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 12, 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" 
+rule "#29429 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 10, c2 == 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" 
+rule "#29442 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29444 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 7, 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" 
+rule "#29446 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, c1 <= 7.5, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#29447 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29449 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 3, c2 == 12, 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" 
+rule "#29454 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, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29462 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 4, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29463 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 3, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29467 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 3, c5 == 9, 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" 
+rule "#29469 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 3, c5 == 7, 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" 
+rule "#29470 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 3, c5 == 6, 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" 
+rule "#29472 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 3, c5 == 4, c2 == 13, 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" 
+rule "#29473 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 3, c5 == 4, c2 == 12, 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" 
+rule "#29481 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 3, c5 == 4, c2 == 4, 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" 
+rule "#29487 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 3, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29488 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 13, 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" 
+rule "#29489 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 12, 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" 
+rule "#29498 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 11, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29499 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 11, c2 == 4, 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" 
+rule "#29503 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 10, 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" 
+rule "#29504 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6049 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29507 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 6, 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" 
+rule "#29510 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 3, 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" 
+rule "#29515 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29519 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 2, c5 == 2, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29525 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29526 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 12, 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" 
+rule "#29527 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29528 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29529 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29530 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 8, 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" 
+rule "#29532 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29533 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 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" 
+rule "#29536 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 2, 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" 
+rule "#29540 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)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 1, c2 == 10, 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" 
+rule "#29545 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, c4 > 8.0, c1 > 2.5, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 7, c3 == 1, c5 == 1, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29550 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 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" 
+rule "#29551 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 12, 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" 
+rule "#29552 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, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6067 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29556 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 9, c3 == 11, 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" 
+rule "#29558 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 9, c3 == 9, 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" 
+rule "#29567 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 8, 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" 
+rule "#29570 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 5, 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" 
+rule "#29571 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 <= 10.5, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6073 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29572 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 <= 10.5, c4 > 5.0, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 13, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 12, c2 == 12, 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" 
+rule "#29577 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 12, c2 == 11, 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" 
+rule "#29580 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 12, c2 == 8, 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" 
+rule "#29581 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 12, c2 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6079 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29591 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 11, c3 == 12, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6080 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29592 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 11, c3 == 12, c2 == 10, 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" 
+rule "#29602 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 11, c3 == 11, 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" 
+rule "#29604 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 11, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29606 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 11, c3 == 7, 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" 
+rule "#29612 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 11, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29613 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 10, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29616 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 10, c3 == 10, 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" 
+rule "#29617 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 10, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29618 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 10, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29620 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 10, c3 == 6, 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" 
+rule "#29623 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 == 4, c5 <= 3.0, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 10, c3 == 5, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29628 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 10, c3 == 5, c2 == 6, 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" 
+rule "#29637 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 10, c3 == 1, 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" 
+rule "#29638 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 9, c3 == 13, 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" 
+rule "#29639 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 9, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29640 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 9, c3 == 11, 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" 
+rule "#29647 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 9, c3 == 4, 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" 
+rule "#29648 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 9, c3 == 3, 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" 
+rule "#29649 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 9, c3 == 2, 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" 
+rule "#29656 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 8, c3 == 8, 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" 
+rule "#29659 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29660 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 8, c3 == 4, 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" 
+rule "#29661 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, c5 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 8, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6106 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29664 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, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29668 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29670 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 7, 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" 
+rule "#29671 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 6, 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" 
+rule "#29672 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 > 4.5, c3 <= 12.5, c2 <= 7.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29674 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29681 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 1, c2 == 8, 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" 
+rule "#29682 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 7, c3 == 1, c2 == 7, 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" 
+rule "#29690 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 6, c2 == 12, 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" 
+rule "#29692 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 6, c2 == 10, 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" 
+rule "#29703 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, c1 > 2.0, c2 <= 10.0, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 6, c2 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29704 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 6, c2 == 7, c3 == 4, 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" 
+rule "#29710 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 6, c2 == 4, 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" 
+rule "#29712 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 6, c2 == 2, 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" 
+rule "#29713 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 6, c2 == 1, 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" 
+rule "#29718 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 13, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29721 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 13, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29726 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 13, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29727 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#29729 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29731 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29732 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29733 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29735 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29737 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 5, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29739 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 13, 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" 
+rule "#29746 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 11, c2 == 8, 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" 
+rule "#29750 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 11, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29754 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 10, 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" 
+rule "#29761 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 8, c2 == 8, 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" 
+rule "#29768 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 8, c2 == 1, 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" 
+rule "#29769 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, c2 <= 11.5, c1 <= 12.0, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6129 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29771 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 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" 
+rule "#29772 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 4, c3 == 4, 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" 
+rule "#29778 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29779 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 3, c2 == 10, 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" 
+rule "#29781 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 3, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29782 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 3, c2 == 7, 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" 
+rule "#29785 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 3, c2 == 4, 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" 
+rule "#29786 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 3, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29789 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 2, c3 == 13, 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" 
+rule "#29791 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 2, c3 == 11, 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" 
+rule "#29793 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 2, c3 == 9, 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" 
+rule "#29796 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 2, c3 == 6, 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" 
+rule "#29797 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, c2 <= 3.5, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 2, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29800 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 2, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29803 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 1, c2 == 12, 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" 
+rule "#29804 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 1, c2 == 11, 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" 
+rule "#29807 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 1, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6147 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#29810 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 1, c2 == 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" 
+rule "#29812 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)
+		 examples.Poker(c4 == 5, c1 == 6, c5 == 1, c2 == 3, 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" 
+rule "#29815 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 == 1, c5 <= 5.0, c4 > 6.0, c3 <= 4.5, c1 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29817 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 13, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29821 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29822 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 13, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 13, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29826 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 13, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29827 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 12, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29831 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 12, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29837 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 12, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29838 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 12, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29840 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 12, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29842 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 11, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29852 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 11, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29857 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 10, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29862 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 10, c2 == 9, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29864 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 10, c2 == 9, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29865 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 10, c2 == 9, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29872 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 10, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 10, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29883 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 9, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29884 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 9, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29885 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 9, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29888 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29890 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 9, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29893 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 8, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29894 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 8, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29897 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29899 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 8, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29906 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 7, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29910 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 7, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29912 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 7, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29914 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 7, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29917 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 7, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29920 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 6, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29921 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29924 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 6, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29925 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 6, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29928 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29929 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 6, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29933 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 4, c3 == 13, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29945 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 4, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29953 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29957 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29959 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29960 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29965 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 9, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 9, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29972 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 9, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29973 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 9, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29975 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29977 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#29979 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#29986 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 2, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#29988 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 2, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#29993 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30000 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 2, c2 == 10, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30004 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 2, c2 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30011 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 2, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30015 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30018 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 2, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 1, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30026 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 1, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30029 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 5, c5 == 1, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30032 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30033 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30035 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30038 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30040 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30041 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#30042 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 3, 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" 
+rule "#30043 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 2, 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" 
+rule "#30044 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 13, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30047 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 12, c5 == 11, 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" 
+rule "#30050 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 12, c5 == 8, 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" 
+rule "#30051 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 12, c5 == 7, 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" 
+rule "#30052 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 12, c5 == 6, 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" 
+rule "#30053 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 12, c5 == 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" 
+rule "#30055 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 12, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30058 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 13, 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" 
+rule "#30060 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, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30062 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 12, c3 == 10, 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" 
+rule "#30063 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 12, c3 == 9, 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" 
+rule "#30074 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6171 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30075 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 > 2.0, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 8, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30084 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 8, c3 == 4, 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" 
+rule "#30089 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 6, c3 == 13, 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" 
+rule "#30091 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 6, c3 == 11, 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" 
+rule "#30097 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 6, c3 == 5, 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" 
+rule "#30103 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30104 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 3, 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" 
+rule "#30108 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30114 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 2, c3 == 4, 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" 
+rule "#30116 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 11, c5 == 2, c3 == 2, 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" 
+rule "#30119 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 10, c3 == 13, 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" 
+rule "#30120 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 10, c3 == 12, 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" 
+rule "#30121 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 10, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30125 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 10, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30128 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 10, c3 == 4, 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" 
+rule "#30131 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 10, c3 == 1, 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" 
+rule "#30132 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, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 9, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6190 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30135 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 9, c3 == 10, 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" 
+rule "#30142 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 9, c3 == 3, 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" 
+rule "#30148 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 8, c3 == 10, 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" 
+rule "#30150 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 == 2, c1 > 2.0, c4 > 3.5, c5 > 10.0, c2 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30153 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 8, c3 == 7, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30158 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 8, c3 == 7, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#30173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 8, c3 == 6, c5 == 4, 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" 
+rule "#30175 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 8, c3 == 6, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6198 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30180 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 8, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30181 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 8, c3 == 1, 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" 
+rule "#30183 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 12, 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" 
+rule "#30189 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30191 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 4, 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" 
+rule "#30192 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 3, 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" 
+rule "#30194 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 7, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30195 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 13, 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" 
+rule "#30196 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 12, 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" 
+rule "#30197 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6209 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30199 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 9, 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" 
+rule "#30200 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 8, 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" 
+rule "#30202 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 6, 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" 
+rule "#30204 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 6, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6216 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30211 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 10, 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" 
+rule "#30214 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 7, c5 == 13, 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" 
+rule "#30220 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 == 3, c2 > 2.5, c1 > 9.0, c5 > 3.0, c3 <= 9.5, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30221 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 7, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30227 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30229 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30236 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 3, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30239 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 3, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30243 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 5, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30245 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30249 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 4, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 4, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 4, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30256 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#30257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30259 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 12, 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" 
+rule "#30261 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 10, 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" 
+rule "#30265 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 6, c5 == 13, 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" 
+rule "#30271 poker_hand = 4 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 6, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#30273 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 6, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30280 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 3, c3 == 3, 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" 
+rule "#30283 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 13, 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" 
+rule "#30284 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 12, 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" 
+rule "#30285 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30286 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 10, 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" 
+rule "#30287 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 9, 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" 
+rule "#30292 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 4, 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" 
+rule "#30294 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 2, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30299 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 1, c3 == 10, 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" 
+rule "#30300 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 1, c3 == 9, 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" 
+rule "#30303 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 1, c3 == 6, 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" 
+rule "#30306 poker_hand = 4 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)
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 1, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#30307 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 4, c2 == 1, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30310 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 12, 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" 
+rule "#30311 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 11, 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" 
+rule "#30312 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, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30313 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 9, 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" 
+rule "#30314 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 8, 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" 
+rule "#30315 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, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30317 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 5, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30320 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 5, c3 == 10, 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" 
+rule "#30326 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 5, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30333 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 13, c5 == 1, 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" 
+rule "#30337 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 12, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30341 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 12, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30342 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 12, c3 == 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" 
+rule "#30343 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 12, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30345 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 12, c3 == 2, 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" 
+rule "#30347 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 <= 9.0, c5 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30349 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 11, 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" 
+rule "#30361 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 7, c5 == 5, 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" 
+rule "#30365 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 7, c5 == 1, 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" 
+rule "#30366 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 6, 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" 
+rule "#30367 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 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" 
+rule "#30370 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, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30371 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 11, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30372 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 10, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30375 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 10, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30376 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 10, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30377 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 10, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30381 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 10, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 9, s2 == 4, 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" 
+rule "#30388 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 9, s2 == 1, 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" 
+rule "#30389 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 8, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30395 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 8, c3 == 12, c5 == 8, 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" 
+rule "#30397 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 8, c3 == 12, c5 == 6, 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" 
+rule "#30404 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 8, c3 == 10, 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" 
+rule "#30405 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 8, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30406 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 8, c3 == 8, 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" 
+rule "#30412 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 8, c3 == 2, 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" 
+rule "#30413 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 8, c3 == 1, 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" 
+rule "#30414 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 7, c3 == 13, 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" 
+rule "#30415 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 7, c3 == 12, 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" 
+rule "#30417 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 > 1.0, c2 <= 6.5, c5 > 4.0, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 7, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6280 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30422 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 7, c3 == 5, 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" 
+rule "#30424 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 7, c3 == 3, 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" 
+rule "#30426 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 7, c3 == 1, 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" 
+rule "#30427 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 6, c3 == 13, 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" 
+rule "#30428 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 6, c3 == 12, 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" 
+rule "#30431 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30435 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 6, c3 == 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" 
+rule "#30436 poker_hand = 4 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 6, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#30438 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 6, c3 == 2, 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" 
+rule "#30445 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 4, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 4, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30448 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 4, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30449 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 4, c5 == 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" 
+rule "#30450 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 4, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 4, c5 == 2, 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" 
+rule "#30453 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 4, c5 == 1, 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" 
+rule "#30454 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 3, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30455 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 3, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30458 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 3, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30459 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 3, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 3, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30462 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 3, c3 == 5, 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" 
+rule "#30468 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)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 12, 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" 
+rule "#30469 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, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30470 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30471 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30472 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30473 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30474 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30475 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 5, 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" 
+rule "#30476 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, c2 <= 13, c1 <= 4.5, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30477 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 2, c3 == 3, 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" 
+rule "#30480 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, c2 <= 13, c1 > 4.5, c5 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 1, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30481 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, c3 > 2.0, c1 > 2.0, c5 > 5.5, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 1, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30486 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 1, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30488 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 1, c5 == 5, 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" 
+rule "#30491 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, c3 > 2.0, c1 <= 2.0, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 1, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30492 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 3, c2 == 1, c5 == 1, 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" 
+rule "#30497 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, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 13, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30498 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 13, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30499 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 13, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30505 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 13, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30510 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 12, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30511 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 12, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30512 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 12, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30515 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 12, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30516 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 12, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30519 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30520 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30528 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 11, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30529 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 11, c2 == 5, 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" 
+rule "#30536 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 10, c2 == 11, 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" 
+rule "#30538 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 10, c2 == 9, 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" 
+rule "#30548 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30553 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30554 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 2, 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" 
+rule "#30555 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 11, c5 == 1, 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" 
+rule "#30556 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 10, c5 == 13, 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" 
+rule "#30557 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 10, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30559 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 10, c5 == 10, 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" 
+rule "#30560 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 10, c5 == 9, 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" 
+rule "#30563 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 <= 9.5, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 10, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30564 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 10, c5 == 5, 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" 
+rule "#30565 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 > 9.5, c4 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 10, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30568 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 10, c5 == 1, 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" 
+rule "#30574 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 9, c2 == 8, 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" 
+rule "#30577 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 9, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30578 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 9, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30579 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 9, c2 == 3, 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" 
+rule "#30580 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 9, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6325 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30591 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 8, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30593 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 8, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#30595 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30598 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30602 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30604 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30605 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30606 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 2, 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" 
+rule "#30614 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 1, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30615 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 7, c5 == 1, c2 == 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" 
+rule "#30624 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 6, s2 == 2, c2 == 11, 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" 
+rule "#30630 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 6, s2 == 2, c2 == 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" 
+rule "#30636 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 5, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30641 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 5, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30642 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 5, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30643 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 5, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30646 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 5, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30650 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 12, 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" 
+rule "#30652 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30653 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 9, 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" 
+rule "#30663 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, c1 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 7, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30665 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 7, c5 == 3, 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" 
+rule "#30668 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, c1 <= 13, c3 > 12.0, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6338 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30670 poker_hand = 3 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#30671 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30672 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 4, c2 == 2, 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" 
+rule "#30676 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 <= 4.0, c4 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30678 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30680 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30681 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30685 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 3, c2 == 2, 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" 
+rule "#30687 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 2, c2 == 13, 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" 
+rule "#30688 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 2, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30689 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 2, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30690 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 2, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30695 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 2, c2 == 5, 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" 
+rule "#30696 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)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 2, c2 == 4, 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" 
+rule "#30700 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 1, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30703 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 1, c2 == 10, 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" 
+rule "#30711 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, c3 > 9.5, c1 > 2.0, c4 > 4.0, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 1, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30712 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 2, c3 == 1, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30716 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 13, c3 == 10, 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" 
+rule "#30717 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 13, c3 == 9, 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" 
+rule "#30718 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 13, c3 == 8, 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" 
+rule "#30720 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 13, c3 == 6, 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" 
+rule "#30721 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, c1 <= 10.5, c2 <= 3.0, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 13, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#30724 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 13, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30725 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 13, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#30730 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 12, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30736 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 12, c3 == 6, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30739 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 12, c3 == 6, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30741 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 12, c3 == 6, c5 == 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" 
+rule "#30746 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 12, c3 == 5, 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" 
+rule "#30750 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6357 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30753 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 11, 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" 
+rule "#30754 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 10, 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" 
+rule "#30755 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 9, c3 == 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" 
+rule "#30758 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 9, c3 == 10, 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" 
+rule "#30767 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 9, c3 == 1, 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" 
+rule "#30768 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 8, 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" 
+rule "#30771 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 5, 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" 
+rule "#30772 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, c2 <= 2.5, c3 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6373 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30774 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 2, 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" 
+rule "#30775 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 11, c5 == 1, 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" 
+rule "#30776 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, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 10, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30779 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 10, c3 == 11, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30794 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 10, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30797 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 10, c3 == 4, 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" 
+rule "#30799 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 10, c3 == 2, 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" 
+rule "#30803 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 11, 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" 
+rule "#30805 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 9, 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" 
+rule "#30808 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, c3 > 5.0, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30809 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 5, 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" 
+rule "#30817 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 4, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 4, c3 == 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" 
+rule "#30826 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 2, c3 == 11, 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" 
+rule "#30832 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 9, c5 == 2, c3 == 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" 
+rule "#30842 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 8, c3 == 9, 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" 
+rule "#30844 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 == 2, c1 > 1.0, c3 <= 11.5, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 8, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30847 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 8, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30848 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30849 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 8, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30852 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 12, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30861 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 12, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30864 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 12, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30866 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 10, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30873 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 10, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30874 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 10, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30877 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 10, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30879 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30883 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 5, 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" 
+rule "#30885 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 7, c3 == 3, 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" 
+rule "#30889 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6397 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30891 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6398 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30893 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 8, 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" 
+rule "#30897 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 7, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30899 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 7, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30900 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 7, c3 == 7, 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" 
+rule "#30905 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 7, c3 == 2, 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" 
+rule "#30907 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 6, 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" 
+rule "#30908 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30916 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 4, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30919 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 4, c3 == 3, 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" 
+rule "#30932 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 3, c3 == 3, 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" 
+rule "#30933 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 3, c3 == 2, 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" 
+rule "#30935 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, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6413 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#30936 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 6, c5 == 1, 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" 
+rule "#30937 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 5, c5 == 13, 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" 
+rule "#30939 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 5, c5 == 11, 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" 
+rule "#30941 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 5, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30950 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30951 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 4, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30954 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 4, c3 == 11, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30955 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 4, c3 == 11, c5 == 10, 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" 
+rule "#30966 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 4, c3 == 9, 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" 
+rule "#30969 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 4, c3 == 6, 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" 
+rule "#30972 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 4, c3 == 3, 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" 
+rule "#30973 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 4, c3 == 2, 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" 
+rule "#30976 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30979 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#30980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 8, 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" 
+rule "#30988 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 7, c3 == 6, 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" 
+rule "#30992 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 7, c3 == 2, 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" 
+rule "#30993 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 7, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30996 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 4, 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" 
+rule "#30999 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 3, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31000 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31002 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31003 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 10, 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" 
+rule "#31005 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 8, 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" 
+rule "#31007 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 6, 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" 
+rule "#31008 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 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" 
+rule "#31009 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 4, 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" 
+rule "#31010 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, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 2, c3 == 1, 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" 
+rule "#31013 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 1, c3 == 13, 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" 
+rule "#31014 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 1, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6443 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31019 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 1, c3 == 7, 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" 
+rule "#31022 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)
+		 examples.Poker(c4 == 5, c1 == 1, c2 == 1, c3 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31026 poker_hand = 3 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#31028 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 13, c1 == 11, 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" 
+rule "#31029 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, c4 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 13, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 13, c1 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31040 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 13, c1 == 6, c3 == 6, 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" 
+rule "#31049 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31052 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 12, s3 == 4, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#31055 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 12, s3 == 4, c3 == 9, 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" 
+rule "#31058 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 12, s3 == 4, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31068 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 11, c1 == 12, 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" 
+rule "#31072 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 <= 3.0, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31076 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 11, c1 == 4, 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" 
+rule "#31078 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 11, c1 == 2, 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" 
+rule "#31079 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 11, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31080 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 10, c1 == 13, 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" 
+rule "#31082 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 10, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31084 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 10, c1 == 9, 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" 
+rule "#31087 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 10, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31088 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 10, c1 == 5, 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" 
+rule "#31093 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 9, c3 == 13, 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" 
+rule "#31094 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 9, c3 == 12, 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" 
+rule "#31095 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6474 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31098 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 9, c3 == 8, 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" 
+rule "#31100 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 9, c3 == 6, 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" 
+rule "#31101 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 9, c3 == 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" 
+rule "#31104 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 9, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31111 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 8, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 8, c1 == 7, 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" 
+rule "#31116 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 8, c1 == 3, 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" 
+rule "#31120 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 12, 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" 
+rule "#31122 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 10, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31124 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 10, c3 == 11, 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" 
+rule "#31138 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 6, 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" 
+rule "#31140 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 5, c3 == 12, 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" 
+rule "#31147 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 5, c3 == 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" 
+rule "#31151 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 5, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31152 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 4, 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" 
+rule "#31154 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 7, c1 == 2, 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" 
+rule "#31158 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 6, c1 == 11, 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" 
+rule "#31160 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 6, c1 == 9, 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" 
+rule "#31164 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 6, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31165 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 6, c1 == 4, 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" 
+rule "#31167 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6494 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31170 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 12, 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" 
+rule "#31171 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31173 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31175 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 7, 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" 
+rule "#31180 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 2, 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" 
+rule "#31181 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 5, c3 == 1, 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" 
+rule "#31189 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 4, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31191 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 4, c3 == 4, 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" 
+rule "#31192 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 == 1, c5 > 3.5, c2 > 1.5, c3 > 1.0, c1 <= 2.0, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 4, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31195 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 13, 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" 
+rule "#31197 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 11, 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" 
+rule "#31207 poker_hand = 5 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 9, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
 end
 
-rule "#6512 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31211 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 == 4, c3 <= 12.5, c4 <= 1.0, c1 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 9, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6513 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31212 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 == 4, c3 <= 12.5, c4 <= 1.0, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31214 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 3, 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" 
+rule "#31219 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 3, c1 == 1, 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" 
+rule "#31223 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 10, 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" 
+rule "#31224 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6518 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31228 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 8, c1 == 10, 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" 
+rule "#31234 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 8, c1 == 4, 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" 
+rule "#31238 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 7, 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" 
+rule "#31242 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 6, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6526 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31246 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)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 6, c1 == 6, 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" 
+rule "#31254 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 2, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31262 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 1, c1 == 12, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31267 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 1, c1 == 12, c3 == 4, 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" 
+rule "#31273 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31278 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31280 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 13, c5 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31283 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 12, 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" 
+rule "#31286 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 9, c3 == 13, 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" 
+rule "#31298 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 9, c3 == 1, 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" 
+rule "#31300 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 7, 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" 
+rule "#31301 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 5, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31312 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 5, c3 == 3, 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" 
+rule "#31315 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 4, 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" 
+rule "#31316 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, c3 <= 6.5, c1 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31321 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 12, c1 == 11, 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" 
+rule "#31323 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 == 4, c5 > 5.0, c2 <= 10.5, c3 <= 6.0, c1 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31326 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 12, c1 == 6, 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" 
+rule "#31330 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 12, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6545 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31331 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 12, c1 == 1, 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" 
+rule "#31335 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 9, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 9, c3 == 1, 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" 
+rule "#31350 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 8, c3 == 12, 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" 
+rule "#31357 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31362 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31363 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31364 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31367 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 11, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31370 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 10, c3 == 12, 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" 
+rule "#31384 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 10, c3 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31389 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 10, c3 == 2, c1 == 4, 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" 
+rule "#31393 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 10, c3 == 1, 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" 
+rule "#31394 poker_hand = 5 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 9, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#31401 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 9, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31402 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 9, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31405 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 9, c3 == 2, 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" 
+rule "#31406 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 9, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31415 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 6, c3 == 12, 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" 
+rule "#31418 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 6, c3 == 9, 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" 
+rule "#31428 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 4, 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" 
+rule "#31429 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 3, 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" 
+rule "#31430 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 2, 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" 
+rule "#31431 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 8, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31434 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, c1 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31435 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31442 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 7, c1 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31448 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 7, c1 == 6, c3 == 4, 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" 
+rule "#31453 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 7, c1 == 4, 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" 
+rule "#31454 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 7, c1 == 3, 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" 
+rule "#31457 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, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31459 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 12, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#31464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 12, c3 == 7, 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" 
+rule "#31467 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 == 1, c5 <= 9.5, c4 > 6.5, c1 <= 12.0, c2 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 12, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31475 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 7, 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" 
+rule "#31476 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 == 1, c5 <= 9.5, c4 > 6.5, c1 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31479 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 3, 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" 
+rule "#31480 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 6, c1 == 2, 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" 
+rule "#31482 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 5, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31483 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 5, c3 == 12, 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" 
+rule "#31485 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 5, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31488 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 5, c3 == 7, 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" 
+rule "#31489 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 5, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6582 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31493 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 5, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31494 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 5, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31496 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 4, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31499 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 4, c1 == 7, 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" 
+rule "#31504 poker_hand = 3 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#31508 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31510 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 11, 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" 
+rule "#31512 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31516 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 6, c3 == 12, 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" 
+rule "#31521 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 6, c3 == 7, 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" 
+rule "#31528 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, c5 > 1.0, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31529 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 4, 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" 
+rule "#31531 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, c5 <= 1.0, c2 > 6, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 2, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31532 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 3, c1 == 2, c3 == 12, 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" 
+rule "#31545 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 2, s3 == 4, c1 == 13, 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" 
+rule "#31548 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 2, s3 == 4, c1 == 10, 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" 
+rule "#31551 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 2, s3 == 4, c1 == 7, 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" 
+rule "#31555 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 2, s3 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6594 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31561 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 13, 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" 
+rule "#31562 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 12, 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" 
+rule "#31566 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 9, c1 == 12, 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" 
+rule "#31573 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 9, c1 == 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" 
+rule "#31578 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 8, 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" 
+rule "#31579 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31583 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 3, 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" 
+rule "#31585 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)
+		 examples.Poker(c4 == 4, c2 == 12, c5 == 1, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31587 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 13, c1 == 12, 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" 
+rule "#31588 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 13, c1 == 11, 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" 
+rule "#31589 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 13, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31590 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31592 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 13, c1 == 7, 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" 
+rule "#31594 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 13, c1 == 5, 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" 
+rule "#31597 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31599 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31600 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31605 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31608 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 4, 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" 
+rule "#31609 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 2, c1 == 12, 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" 
+rule "#31612 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 2, c1 == 11, 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" 
+rule "#31615 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 2, c1 == 8, 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" 
+rule "#31623 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 12, c3 == 1, 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" 
+rule "#31624 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 11, c3 == 13, 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" 
+rule "#31627 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 11, c3 == 10, 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" 
+rule "#31628 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 11, c3 == 9, 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" 
+rule "#31631 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 11, c3 == 6, 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" 
+rule "#31633 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 <= 3.5, c5 <= 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 11, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31638 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 10, c3 == 12, 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" 
+rule "#31639 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 10, c3 == 11, 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" 
+rule "#31642 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 10, c3 == 8, 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" 
+rule "#31644 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 10, c3 == 6, 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" 
+rule "#31649 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, c5 > 4.0, c4 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 10, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31650 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31651 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31652 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 11, 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" 
+rule "#31653 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 10, 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" 
+rule "#31655 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 8, 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" 
+rule "#31656 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 7, 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" 
+rule "#31657 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 6, 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" 
+rule "#31659 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 4, 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" 
+rule "#31660 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 9, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31663 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 13, 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" 
+rule "#31665 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31667 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31675 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 7, c1 == 5, 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" 
+rule "#31683 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 5, c1 == 5, 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" 
+rule "#31696 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 8, c3 == 4, 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" 
+rule "#31706 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 7, c1 == 7, 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" 
+rule "#31708 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6658 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31709 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 7, c1 == 4, 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" 
+rule "#31710 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 7, c1 == 3, 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" 
+rule "#31713 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 6, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31714 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 6, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31716 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31719 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 6, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31721 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 6, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31723 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31726 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31729 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 5, c1 == 12, c3 == 11, 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" 
+rule "#31731 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 5, c1 == 12, c3 == 9, 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" 
+rule "#31742 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 == 4, c1 <= 9.0, c3 > 9.5, c5 <= 1.5, c2 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 5, c1 == 11, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#31744 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 5, c1 == 11, c3 == 9, 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" 
+rule "#31753 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 5, c1 == 6, 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" 
+rule "#31762 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31764 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#31768 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31769 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 9, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31770 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 9, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31780 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31783 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31785 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31786 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#31787 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31788 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 13, 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" 
+rule "#31789 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31797 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 8, c1 == 3, 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" 
+rule "#31804 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 8, c1 == 2, 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" 
+rule "#31807 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31809 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31812 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 3, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31814 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31815 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 2, c1 == 11, 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" 
+rule "#31818 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 2, c1 == 8, 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" 
+rule "#31820 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 2, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31826 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 13, 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" 
+rule "#31832 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 12, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31839 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 12, c3 == 1, 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" 
+rule "#31840 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 11, 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" 
+rule "#31842 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)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 9, 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" 
+rule "#31844 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31846 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31847 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 11, c5 == 1, c1 == 4, 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" 
+rule "#31851 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 13, c3 == 13, 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" 
+rule "#31854 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 13, c3 == 10, 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" 
+rule "#31856 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 13, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6689 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31858 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 13, c3 == 6, 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" 
+rule "#31862 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 13, c3 == 5, c5 == 10, 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" 
+rule "#31871 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 13, c3 == 5, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31881 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 11, c5 == 9, 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" 
+rule "#31882 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 11, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31883 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 11, c5 == 7, 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" 
+rule "#31885 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 11, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31887 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 == 1, c3 > 2.5, c1 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 11, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31890 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 10, c3 == 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" 
+rule "#31892 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 10, c3 == 11, 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" 
+rule "#31894 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 == 1, c3 > 2.5, c1 <= 13, c5 <= 12, c4 > 11.0, c2 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 10, c3 == 10, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#31902 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 10, c3 == 10, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#31906 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 10, c3 == 9, 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" 
+rule "#31910 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 == 4, c4 <= 3.0, c5 <= 5.0, c1 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31911 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 10, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31913 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31915 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 9, c5 == 13, 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" 
+rule "#31916 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 9, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31918 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 9, c5 == 10, 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" 
+rule "#31921 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 9, c5 == 7, 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" 
+rule "#31922 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 9, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31923 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 9, c5 == 5, 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" 
+rule "#31925 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, c5 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 9, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31936 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 8, c3 == 8, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#31939 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 8, c3 == 8, c5 == 7, 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" 
+rule "#31953 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 7, c3 == 13, 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" 
+rule "#31955 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#31956 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 7, c3 == 10, 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" 
+rule "#31958 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 7, c3 == 8, 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" 
+rule "#31962 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 7, c3 == 4, 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" 
+rule "#31964 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 == 2, c4 > 1.5, c1 > 2.5, c3 > 10.0, c5 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31968 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31970 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31971 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31972 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31974 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31977 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 2, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31983 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 2, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#31986 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 2, c5 == 4, 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" 
+rule "#31989 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 2, c5 == 1, 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" 
+rule "#31990 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, c5 <= 2.5, c3 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 6, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6733 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32002 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, c5 <= 2.5, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 5, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32008 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 4, c5 == 9, 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" 
+rule "#32009 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 4, c5 == 8, 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" 
+rule "#32010 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 4, c5 == 7, 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" 
+rule "#32011 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 4, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6741 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32013 poker_hand = 6 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 4, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#32016 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 4, c5 == 1, 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" 
+rule "#32017 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 3, c3 == 13, 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" 
+rule "#32018 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32019 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 3, c3 == 11, 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" 
+rule "#32022 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 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32026 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 3, c3 == 4, 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" 
+rule "#32029 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 3, c3 == 1, 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" 
+rule "#32030 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 13, 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" 
+rule "#32031 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6755 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32034 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 11, c5 == 11, 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" 
+rule "#32039 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, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 11, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32046 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 9, 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" 
+rule "#32049 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, c5 <= 13, c3 > 1.0, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32054 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 4, c5 == 10, 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" 
+rule "#32055 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 2, c3 == 4, c5 == 9, 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" 
+rule "#32067 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 1, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32071 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 1, c5 == 9, 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" 
+rule "#32076 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)
+		 examples.Poker(c4 == 4, c2 == 10, c1 == 1, c5 == 4, 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" 
+rule "#32080 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 13, 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" 
+rule "#32082 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6766 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32084 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 13, c1 == 9, 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" 
+rule "#32085 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 > 2.0, c5 > 1.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32086 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 13, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32092 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 13, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32094 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 12, c5 == 12, 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" 
+rule "#32096 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 12, c5 == 10, 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" 
+rule "#32103 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 12, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32106 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32110 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 11, c1 == 9, 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" 
+rule "#32112 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32114 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32116 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 11, c1 == 3, 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" 
+rule "#32118 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 11, c1 == 1, 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" 
+rule "#32119 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32123 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 9, 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" 
+rule "#32124 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 8, 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" 
+rule "#32125 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32133 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 6, c1 == 6, 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" 
+rule "#32138 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32139 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32140 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 4, 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" 
+rule "#32141 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 3, 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" 
+rule "#32142 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 10, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32144 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 9, s1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32146 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 9, s1 == 2, 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" 
+rule "#32148 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 8, c5 == 13, 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" 
+rule "#32150 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 8, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32151 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 8, c5 == 10, 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" 
+rule "#32152 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 <= 10.0, c5 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 8, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32153 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 8, c5 == 8, 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" 
+rule "#32166 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 7, c1 == 8, 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" 
+rule "#32167 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 7, c1 == 7, 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" 
+rule "#32170 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 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 7, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32174 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32179 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 6, c1 == 8, 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" 
+rule "#32181 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 6, c1 == 6, 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" 
+rule "#32190 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 5, c1 == 10, 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" 
+rule "#32193 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 5, c1 == 7, 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" 
+rule "#32197 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 5, c1 == 3, 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" 
+rule "#32198 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 5, c1 == 2, 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" 
+rule "#32199 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 5, c1 == 1, 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" 
+rule "#32202 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 == 1, c5 > 1.5, c3 <= 3.0, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 4, c1 == 12, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32203 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 4, c1 == 12, c5 == 11, 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" 
+rule "#32212 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 4, c1 == 12, c5 == 2, 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" 
+rule "#32214 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 4, c1 == 11, 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" 
+rule "#32215 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 4, c1 == 10, 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" 
+rule "#32219 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 4, c1 == 6, 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" 
+rule "#32220 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 == 4, c2 <= 12.0, c1 > 2.0, c3 <= 12.0, c4 > 13, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 4, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32223 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 4, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32227 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32229 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32230 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 8, 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" 
+rule "#32231 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 7, 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" 
+rule "#32232 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 3, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32247 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 13, c1 == 4, 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" 
+rule "#32248 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, c3 > 5.5, c1 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32256 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 10, c1 == 10, 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" 
+rule "#32265 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 10, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6829 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32270 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 5, 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" 
+rule "#32273 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32274 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 2, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32275 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 13, 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" 
+rule "#32282 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, c2 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32286 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 11, c1 == 4, 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" 
+rule "#32291 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32297 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 5, c1 == 11, 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" 
+rule "#32299 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 5, c1 == 9, 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" 
+rule "#32310 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)
+		 examples.Poker(c4 == 4, c2 == 9, c3 == 1, c5 == 2, 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" 
+rule "#32312 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6842 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32313 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, c2 <= 3.5, c1 > 10.5, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32315 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32316 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 9, 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" 
+rule "#32317 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#6845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32328 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, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 6, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32332 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32333 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32335 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 2, 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" 
+rule "#32336 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 13, c1 == 1, 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" 
+rule "#32342 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 12, c3 == 8, 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" 
+rule "#32344 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 12, c3 == 6, 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" 
+rule "#32345 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 12, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32351 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32352 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 11, c1 == 11, 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" 
+rule "#32353 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32356 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 11, c1 == 7, 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" 
+rule "#32358 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 11, c1 == 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" 
+rule "#32360 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 11, c1 == 3, 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" 
+rule "#32366 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 11, c1 == 2, c3 == 8, 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" 
+rule "#32369 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 11, c1 == 2, c3 == 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" 
+rule "#32377 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32379 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 9, 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" 
+rule "#32382 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32383 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 5, 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" 
+rule "#32390 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 3, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32391 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 3, c1 == 7, 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" 
+rule "#32392 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 10, c3 == 3, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32400 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32401 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32403 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32404 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 11, c1 == 11, 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" 
+rule "#32405 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 11, c1 == 10, 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" 
+rule "#32414 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, c5 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 11, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32415 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 10, 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" 
+rule "#32417 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 8, 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" 
+rule "#32420 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 == 3, c4 > 3.5, c1 > 1.5, c2 <= 3.0, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 4, 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" 
+rule "#32422 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 == 3, c4 > 3.5, c1 > 1.5, c2 > 3.0, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32424 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 9, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32426 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 8, c3 == 12, 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" 
+rule "#32427 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 8, c3 == 11, 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" 
+rule "#32433 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32434 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 8, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32436 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 8, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#32437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 8, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32438 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 13, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 11, 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" 
+rule "#32453 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 10, 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" 
+rule "#32455 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32457 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 6, 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" 
+rule "#32460 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 3, 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" 
+rule "#32462 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 7, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32465 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 6, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32467 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 6, c1 == 9, 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" 
+rule "#32468 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 6, c1 == 7, 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" 
+rule "#32472 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 6, c1 == 4, 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" 
+rule "#32481 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 5, c3 == 8, 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" 
+rule "#32482 poker_hand = 4 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 5, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#32491 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 5, c3 == 3, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32497 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 5, c3 == 3, c1 == 2, 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" 
+rule "#32499 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 5, c3 == 2, 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" 
+rule "#32502 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 4, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32503 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 4, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32508 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 4, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32510 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 4, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#32521 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 4, c1 == 3, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32523 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 4, c1 == 3, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32524 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 4, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32529 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 11, c3 == 12, 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" 
+rule "#32530 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 11, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32540 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 11, c3 == 1, 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" 
+rule "#32541 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 10, 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" 
+rule "#32542 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 9, 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" 
+rule "#32544 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 7, 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" 
+rule "#32545 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 6, 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" 
+rule "#32548 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 3, c1 == 3, 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" 
+rule "#32551 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 2, c1 == 13, 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" 
+rule "#32555 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 2, c1 == 9, 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" 
+rule "#32557 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 2, c1 == 7, 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" 
+rule "#32558 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 2, c1 == 6, 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" 
+rule "#32559 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)
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 2, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32560 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 8, c5 == 2, c1 == 4, 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" 
+rule "#32565 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32566 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 12, 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" 
+rule "#32568 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 11, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 11, c5 == 11, 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" 
+rule "#32583 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 7, 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" 
+rule "#32584 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 <= 2.5, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6926 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32585 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 5, 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" 
+rule "#32586 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 4, 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" 
+rule "#32587 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 13, c3 == 3, 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" 
+rule "#32592 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 11, 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" 
+rule "#32596 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 7, 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" 
+rule "#32597 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 6, 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" 
+rule "#32603 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 > 11.5, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 5, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 5, c5 == 7, 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" 
+rule "#32607 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 5, c5 == 4, 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" 
+rule "#32613 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 2, c5 == 13, 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" 
+rule "#32621 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 2, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32624 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 12, c3 == 2, c5 == 2, 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" 
+rule "#32628 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 11, c5 == 12, 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" 
+rule "#32630 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 11, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32631 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 11, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32632 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 11, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 11, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32635 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 11, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32637 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 11, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32645 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 10, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32648 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 10, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32650 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 10, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32651 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 10, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32654 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32655 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 11, 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" 
+rule "#32656 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 10, 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" 
+rule "#32661 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 5, 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" 
+rule "#32662 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 4, 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" 
+rule "#32674 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 2, c5 == 3, 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" 
+rule "#32675 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 2, c5 == 2, 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" 
+rule "#32676 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 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 9, c3 == 2, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32678 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32680 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 11, 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" 
+rule "#32681 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, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32683 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32684 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32686 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 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" 
+rule "#32692 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 2, c5 == 10, 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" 
+rule "#32698 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 2, c5 == 4, 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" 
+rule "#32702 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 8, c3 == 1, 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" 
+rule "#32703 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 13, 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" 
+rule "#32704 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 12, 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" 
+rule "#32705 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 11, 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" 
+rule "#32711 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32712 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 3, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32723 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 7, c3 == 3, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32728 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 13, 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" 
+rule "#32732 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 == 2, c3 <= 11.5, c1 > 1.0, c4 <= 12.0, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 11, s1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32733 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 11, s1 == 1, 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" 
+rule "#32734 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 == 2, c3 <= 11.5, c1 > 1.0, c4 <= 12.0, c2 <= 13, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#6979 poker_hand = 8 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32736 poker_hand = 4 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
 end
 
-rule "#6980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32739 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32740 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 4, 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" 
+rule "#32741 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 3, 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" 
+rule "#32743 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 6, c5 == 1, 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" 
+rule "#32744 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 5, c5 == 13, 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" 
+rule "#32747 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, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 5, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32749 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 5, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 5, c5 == 6, 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" 
+rule "#32752 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32754 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 5, c5 == 3, 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" 
+rule "#32763 poker_hand = 2 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 4, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32777 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 4, c3 == 3, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32779 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 4, c3 == 3, c5 == 1, 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" 
+rule "#32781 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32782 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32786 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 12, c5 == 10, 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" 
+rule "#32789 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 12, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32790 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 12, c5 == 6, 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" 
+rule "#32796 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 11, 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" 
+rule "#32798 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 9, 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" 
+rule "#32802 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 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 8, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 8, c5 == 8, 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" 
+rule "#32815 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32817 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32818 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 3, c3 == 1, 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" 
+rule "#32819 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 2, c3 == 13, 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" 
+rule "#32823 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 2, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32828 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 2, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#32829 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 2, c3 == 3, 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" 
+rule "#32831 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 2, c3 == 1, 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" 
+rule "#32832 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)
+		 examples.Poker(c4 == 4, c2 == 7, c1 == 1, s3 == 4, 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" 
+rule "#32837 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 7, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32846 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 7, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32848 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 7, c5 == 7, 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" 
+rule "#32854 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 7, c5 == 1, 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" 
+rule "#32855 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 6, 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" 
+rule "#32856 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32860 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 13, c1 == 1, 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" 
+rule "#32861 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 12, c1 == 13, 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" 
+rule "#32863 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, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 12, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32866 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 12, c1 == 8, 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" 
+rule "#32868 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 12, c1 == 6, 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" 
+rule "#32869 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32872 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32878 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 12, c1 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32885 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 12, c1 == 1, c5 == 1, 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" 
+rule "#32886 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 13, 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" 
+rule "#32887 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 12, 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" 
+rule "#32892 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 9, c1 == 11, 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" 
+rule "#32894 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 9, c1 == 9, 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" 
+rule "#32901 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 9, c1 == 2, 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" 
+rule "#32904 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7043 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32905 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 6, 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" 
+rule "#32906 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 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" 
+rule "#32908 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, c5 > 9.5, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32909 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32910 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 11, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32911 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 10, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32913 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 10, c5 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 10, c5 == 11, c1 == 11, 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" 
+rule "#32931 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 10, c5 == 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" 
+rule "#32934 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 10, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7052 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32936 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 9, c5 == 13, 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" 
+rule "#32939 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 9, c5 == 10, 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" 
+rule "#32940 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 <= 4.0, c4 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 9, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7056 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32941 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 <= 4.0, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 9, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 9, c5 == 5, 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" 
+rule "#32945 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 9, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32947 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 9, c5 == 2, 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" 
+rule "#32948 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 9, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32952 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 8, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32954 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 8, c1 == 8, 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" 
+rule "#32957 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, c4 > 1.5, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 8, c1 == 5, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32966 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 8, c1 == 5, c5 == 4, 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" 
+rule "#32971 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 8, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7065 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32974 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, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 13, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#32982 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 13, c5 == 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" 
+rule "#32987 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 12, 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" 
+rule "#32988 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7071 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#32990 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 9, 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" 
+rule "#32994 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 == 4, c5 > 1.5, c3 <= 12.5, c1 <= 11.0, c2 > 4.0, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 8, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32999 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 8, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#33004 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 7, 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" 
+rule "#33006 poker_hand = 4 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#33007 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 4, 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" 
+rule "#33015 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 3, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33018 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 3, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33019 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 3, c5 == 2, 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" 
+rule "#33031 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, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 2, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33032 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 2, c5 == 2, 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" 
+rule "#33034 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 7, c1 == 1, 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" 
+rule "#33035 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 13, 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" 
+rule "#33039 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 10, c1 == 12, 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" 
+rule "#33041 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 == 3, c5 > 6.0, c1 <= 6.5, c3 <= 6.5, c2 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#7086 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33042 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 10, c1 == 9, 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" 
+rule "#33052 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 8, 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" 
+rule "#33053 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33054 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 6, 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" 
+rule "#33055 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 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" 
+rule "#33056 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#7095 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33057 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 6, c5 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7096 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33061 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 5, c1 == 12, 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" 
+rule "#33062 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, c4 > 5.5, c5 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33066 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33071 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 5, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 4, c5 == 8, 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" 
+rule "#33082 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 4, c5 == 4, 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" 
+rule "#33096 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 12, c5 == 4, 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" 
+rule "#33097 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 12, c5 == 3, 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" 
+rule "#33098 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 12, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33099 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 12, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33102 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 9, 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" 
+rule "#33103 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33104 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 7, 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" 
+rule "#33106 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33109 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 2, 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" 
+rule "#33110 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 3, c1 == 1, 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" 
+rule "#33111 poker_hand = 5 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 2, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#33112 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 2, c1 == 12, 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" 
+rule "#33117 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 2, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33118 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 2, c1 == 6, 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" 
+rule "#33120 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 2, c1 == 4, 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" 
+rule "#33122 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 2, c1 == 2, 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" 
+rule "#33124 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, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 2, c1 == 1, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33137 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 12, 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" 
+rule "#33139 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33140 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 9, 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" 
+rule "#33141 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 8, 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" 
+rule "#33144 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33151 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 1, c1 == 10, 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" 
+rule "#33153 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 1, c1 == 8, 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" 
+rule "#33155 poker_hand = 2 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)
+		 examples.Poker(c4 == 4, c2 == 6, c3 == 1, c5 == 1, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33170 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 13, s4 == 4, c5 == 4, 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" 
+rule "#33173 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 13, s4 == 4, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33178 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 12, c1 == 12, 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" 
+rule "#33181 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 12, c1 == 9, 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" 
+rule "#33184 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 12, c1 == 6, 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" 
+rule "#33193 poker_hand = 3 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 12, c1 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33197 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 12, c1 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33200 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 12, c1 == 2, 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" 
+rule "#33203 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, c3 > 9.0, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 11, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33206 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 11, c1 == 9, 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" 
+rule "#33207 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 11, c1 == 8, 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" 
+rule "#33209 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 11, c1 == 6, 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" 
+rule "#33211 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 11, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33213 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 11, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33214 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 11, c1 == 1, 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" 
+rule "#33217 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 10, c1 == 11, 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" 
+rule "#33227 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 10, c1 == 1, 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" 
+rule "#33233 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 9, c5 == 8, 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" 
+rule "#33237 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 9, c5 == 4, 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" 
+rule "#33241 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 8, c5 == 13, 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" 
+rule "#33247 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 8, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33248 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 8, c5 == 6, 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" 
+rule "#33249 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 8, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33251 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 8, c5 == 3, 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" 
+rule "#33253 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 8, c5 == 1, c1 == 13, 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" 
+rule "#33265 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 8, c5 == 1, c1 == 1, 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" 
+rule "#33267 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 7, s1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7149 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33269 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 7, s1 == 1, 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" 
+rule "#33274 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 6, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33278 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 6, c1 == 5, 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" 
+rule "#33280 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 6, c1 == 3, 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" 
+rule "#33282 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33283 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 5, c5 == 13, 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" 
+rule "#33289 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 <= 10.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 5, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7158 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33291 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 5, c5 == 5, 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" 
+rule "#33303 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 == 3, c3 <= 11.0, c5 > 2.0, c1 > 2.5, c2 <= 13, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 5, c5 == 2, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33304 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 5, c5 == 2, c1 == 3, 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" 
+rule "#33307 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, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 5, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33308 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33314 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33315 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33317 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 3, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33319 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 3, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33328 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 3, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33332 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 4, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33334 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 12, 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" 
+rule "#33335 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, c2 > 1.5, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33336 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 10, 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" 
+rule "#33337 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 9, 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" 
+rule "#33338 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 8, 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" 
+rule "#33339 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33343 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 3, 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" 
+rule "#33345 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 3, c5 == 1, 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" 
+rule "#33350 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 12, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33355 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 12, c5 == 5, 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" 
+rule "#33358 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 12, c5 == 2, 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" 
+rule "#33366 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33367 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33368 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 3, 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" 
+rule "#33376 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 1, c5 == 7, 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" 
+rule "#33378 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 2, c1 == 1, c5 == 5, 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" 
+rule "#33387 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, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 1, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7180 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33389 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 1, c5 == 7, 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" 
+rule "#33390 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 1, c5 == 6, 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" 
+rule "#33391 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 1, c5 == 5, 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" 
+rule "#33393 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)
+		 examples.Poker(c4 == 4, c2 == 5, c3 == 1, c5 == 3, 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" 
+rule "#33397 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, c5 > 3.5, c4 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 13, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33401 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 13, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33406 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 13, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33407 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33408 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 13, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33409 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 12, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33410 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 12, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33424 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33425 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33430 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 9, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33439 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33440 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33441 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33442 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33444 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33454 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33458 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 11, c5 == 1, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 10, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33463 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 10, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33468 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 10, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33472 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 10, c5 == 3, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33476 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 10, c5 == 3, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33483 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 10, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33485 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33487 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 9, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33490 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33492 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 9, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33495 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 9, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33500 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 8, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33504 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 8, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33505 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 8, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 8, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33508 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 8, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33509 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 8, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33510 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 7, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33513 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 7, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33514 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 7, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33515 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 7, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33522 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 7, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33527 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 6, c1 == 12, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33531 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 6, c1 == 12, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33541 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 6, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33542 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 6, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33544 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 6, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33545 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 6, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33548 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 5, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33552 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33556 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 5, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33560 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33564 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33570 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 3, c1 == 9, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33571 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 3, c1 == 9, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33580 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 3, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33583 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 3, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33584 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 3, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33587 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 2, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33591 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 2, c5 == 11, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33601 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 2, c5 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33602 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 2, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 2, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33606 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33608 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 4, c3 == 2, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33620 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 12, c1 == 10, 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" 
+rule "#33622 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33623 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 12, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33624 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33626 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 12, c1 == 4, 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" 
+rule "#33627 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 12, c1 == 3, 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" 
+rule "#33629 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33637 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 11, s1 == 4, c1 == 6, 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" 
+rule "#33639 poker_hand = 2 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 11, s1 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33641 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 11, s1 == 4, c1 == 2, 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" 
+rule "#33642 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 11, s1 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33650 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 10, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 10, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33655 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33657 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 10, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33659 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 10, c1 == 1, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33667 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 10, c1 == 1, c5 == 4, 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" 
+rule "#33672 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 9, c5 == 12, 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" 
+rule "#33679 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 9, c5 == 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" 
+rule "#33681 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 9, c5 == 3, 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" 
+rule "#33683 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 9, c5 == 1, 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" 
+rule "#33684 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 <= 13, c1 > 2.0, c4 <= 5.0, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33685 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#33690 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 11, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 11, c5 == 8, 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" 
+rule "#33699 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 10, 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" 
+rule "#33710 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 9, c5 == 3, 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" 
+rule "#33712 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 9, c5 == 1, 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" 
+rule "#33714 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 7, 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" 
+rule "#33716 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33717 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 4, 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" 
+rule "#33718 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33719 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 2, 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" 
+rule "#33720 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 8, c1 == 1, 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" 
+rule "#33723 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 11, 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" 
+rule "#33724 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33725 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 9, 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" 
+rule "#33734 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 5, c5 == 8, 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" 
+rule "#33737 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 5, c5 == 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" 
+rule "#33742 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33744 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 2, 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" 
+rule "#33745 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 1, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7228 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33752 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 1, c5 == 6, 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" 
+rule "#33756 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 1, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 7, c1 == 1, c5 == 1, 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" 
+rule "#33758 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 13, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7231 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33760 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 13, c5 == 11, 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" 
+rule "#33773 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 == 4, c4 <= 8.5, c3 <= 11.0, c2 > 5.0, c1 > 4.0, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7243 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33774 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 9, 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" 
+rule "#33775 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33779 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 7, c5 == 10, 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" 
+rule "#33784 poker_hand = 4 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 7, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#33789 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 6, 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" 
+rule "#33792 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 5, c5 == 11, 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" 
+rule "#33796 poker_hand = 4 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 5, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#33803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 4, 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" 
+rule "#33805 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 2, 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" 
+rule "#33806 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33807 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 5, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33809 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33810 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 5, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 5, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33813 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 5, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33814 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 5, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#33815 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 5, c5 == 5, 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" 
+rule "#33817 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 5, c5 == 3, 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" 
+rule "#33818 poker_hand = 4 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 5, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
 end
 
-rule "#7260 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33820 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 4, c1 == 13, 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" 
+rule "#33821 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 == 2, c1 > 11.0, c2 <= 6.5, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 4, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33826 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 4, c1 == 7, 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" 
+rule "#33829 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 == 2, c1 > 11.0, c2 > 6.5, c3 <= 5.0, c4 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33830 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 4, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33834 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 3, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 3, c5 == 11, 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" 
+rule "#33839 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, c2 > 6.5, c3 <= 5.0, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 3, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33844 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 3, c5 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33849 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 3, c5 == 6, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#33853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 3, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33855 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 3, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33856 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 3, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 2, c1 == 12, 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" 
+rule "#33860 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 > 8.5, c3 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 2, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33866 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 2, c1 == 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" 
+rule "#33868 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 2, c1 == 3, 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" 
+rule "#33869 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 == 1, c2 <= 10.0, c5 <= 8.5, c1 <= 8.5, c3 <= 7.5, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 2, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#33870 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 2, c1 == 1, c5 == 13, 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" 
+rule "#33882 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 2, c1 == 1, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33883 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 1, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33888 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33891 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 1, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33892 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 1, c5 == 4, 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" 
+rule "#33893 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)
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 1, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33894 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 3, c3 == 1, c5 == 2, 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" 
+rule "#33899 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 13, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33901 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 13, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33910 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 13, c3 == 6, c5 == 6, 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" 
+rule "#33913 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 13, c3 == 6, c5 == 3, 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" 
+rule "#33916 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 13, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33919 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 13, c3 == 2, 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" 
+rule "#33920 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 13, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33921 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 12, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33922 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 12, c3 == 12, 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" 
+rule "#33924 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 12, c3 == 10, 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" 
+rule "#33925 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 12, c3 == 9, 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" 
+rule "#33926 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, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 12, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7282 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33929 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 12, c3 == 5, 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" 
+rule "#33933 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, c3 > 7.5, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33934 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 13, c5 == 13, 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" 
+rule "#33942 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 13, c5 == 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" 
+rule "#33946 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, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 13, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33947 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33948 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 11, 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" 
+rule "#33950 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, c4 <= 13, c5 <= 12.5, c3 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33953 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 6, 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" 
+rule "#33958 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 11, c3 == 1, 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" 
+rule "#33961 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 10, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7293 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33964 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 10, c3 == 8, 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" 
+rule "#33965 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 10, c3 == 7, 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" 
+rule "#33970 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 == 2, c1 <= 7.5, c4 <= 12.5, c5 > 7.0, c2 <= 7.5, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 10, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#7296 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#33974 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 11, 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" 
+rule "#33976 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 9, 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" 
+rule "#33979 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, c3 <= 3.0, c2 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 7, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33987 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 7, c5 == 4, 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" 
+rule "#33997 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 6, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#33998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 6, c5 == 6, 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" 
+rule "#34004 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 9, c3 == 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" 
+rule "#34010 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 8, c3 == 12, 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" 
+rule "#34013 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 8, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34014 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 8, c3 == 8, 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" 
+rule "#34017 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 8, c3 == 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" 
+rule "#34019 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 8, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34023 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 8, c3 == 1, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34030 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 8, c3 == 1, c5 == 4, 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" 
+rule "#34038 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 7, c3 == 9, 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" 
+rule "#34045 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 7, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34047 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 13, 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" 
+rule "#34049 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 11, 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" 
+rule "#34051 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34059 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 8, c5 == 6, 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" 
+rule "#34062 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 8, c5 == 3, 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" 
+rule "#34069 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, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 5, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34077 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#34082 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 2, 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" 
+rule "#34083 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 6, c3 == 1, 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" 
+rule "#34084 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 13, 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" 
+rule "#34090 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 10, c3 == 10, 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" 
+rule "#34091 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 10, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 8, 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" 
+rule "#34103 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34104 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 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" 
+rule "#34115 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 4, c3 == 3, 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" 
+rule "#34116 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 == 4, c5 > 4.5, c2 > 1.5, c1 <= 4.5, c3 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 4, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34118 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 5, c5 == 3, 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" 
+rule "#34128 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 4, c3 == 6, 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" 
+rule "#34132 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 == 3, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 4, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34133 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 4, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34135 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 3, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34136 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 3, c3 == 11, 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" 
+rule "#34137 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, c1 <= 3.0, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 3, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34138 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 3, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34145 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 3, c3 == 8, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 3, c3 == 8, c5 == 3, 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" 
+rule "#34154 poker_hand = 4 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 3, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#34155 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 3, c3 == 4, 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" 
+rule "#34156 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, c1 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 3, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34159 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 2, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34160 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 2, c5 == 12, 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" 
+rule "#34165 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 2, c5 == 7, 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" 
+rule "#34166 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 2, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7344 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34177 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)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 2, c5 == 3, c3 == 5, 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" 
+rule "#34179 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, c5 > 10.0, c1 <= 8.5, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 2, c5 == 3, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34187 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 1, c3 == 10, 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" 
+rule "#34193 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, c5 > 10.0, c1 <= 8.5, c3 <= 13, c4 <= 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 1, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34194 poker_hand = 8 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 1, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+end
+
+rule "#34195 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 2, c1 == 1, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34205 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 13, c1 == 12, c5 == 6, 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" 
+rule "#34208 poker_hand = 5 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 13, c1 == 12, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#34211 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 13, c1 == 11, 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" 
+rule "#34213 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 13, c1 == 9, 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" 
+rule "#34216 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 13, c1 == 6, 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" 
+rule "#34217 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 13, c1 == 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" 
+rule "#34218 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, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7356 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34219 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, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7361 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34220 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 13, c1 == 2, 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" 
+rule "#34223 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 12, 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" 
+rule "#34224 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, c5 > 13, c4 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7367 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34226 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7368 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34227 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 8, 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" 
+rule "#34228 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 7, 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" 
+rule "#34229 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 == 2, c5 <= 1.5, c1 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34231 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 5, c5 == 12, 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" 
+rule "#34245 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 12, c1 == 2, 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" 
+rule "#34247 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 11, c5 == 13, 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" 
+rule "#34250 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 11, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7384 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34253 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 11, c5 == 7, 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" 
+rule "#34256 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 11, c5 == 4, 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" 
+rule "#34258 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 11, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34272 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 10, c5 == 7, c1 == 7, 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" 
+rule "#34274 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 10, c5 == 7, c1 == 5, 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" 
+rule "#34279 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 10, c5 == 6, 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" 
+rule "#34282 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 10, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34283 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 10, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34289 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 10, c5 == 1, c1 == 8, 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" 
+rule "#34296 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 == 4, c2 > 5.5, c4 <= 12.5, c3 > 9.5, c1 > 4.5, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 10, c5 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#34300 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 13, c5 == 10, 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" 
+rule "#34301 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 13, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34312 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 10, 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" 
+rule "#34314 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 8, 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" 
+rule "#34315 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34326 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 3, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34331 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 3, c5 == 1, 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" 
+rule "#34332 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34333 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 9, c1 == 1, 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" 
+rule "#34335 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 8, c5 == 12, 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" 
+rule "#34342 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 8, c5 == 9, c1 == 9, 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" 
+rule "#34345 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 8, c5 == 9, c1 == 6, 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" 
+rule "#34352 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, c5 > 3.0, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 8, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34355 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 8, c5 == 4, 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" 
+rule "#34361 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 7, c5 == 11, 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" 
+rule "#34362 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 7, c5 == 10, 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" 
+rule "#34370 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 7, c5 == 8, c1 == 7, 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" 
+rule "#34371 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 7, c5 == 8, c1 == 6, 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" 
+rule "#34378 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 7, c5 == 6, 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" 
+rule "#34379 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 7, c5 == 5, 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" 
+rule "#34385 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 12, 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" 
+rule "#34387 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 > 11.5, c4 <= 10.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7430 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34388 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 > 11.5, c4 > 10.0, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7431 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34390 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 > 11.5, c4 > 10.0, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34403 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 3, c1 == 4, 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" 
+rule "#34405 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34411 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 1, c1 == 10, 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" 
+rule "#34415 poker_hand = 2 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 6, c5 == 1, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34425 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 9, 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" 
+rule "#34426 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 8, 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" 
+rule "#34427 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 7, 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" 
+rule "#34434 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 6, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34440 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 6, c5 == 1, 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" 
+rule "#34451 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 5, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34453 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34454 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34455 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 3, 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" 
+rule "#34465 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 2, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34469 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34482 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 4, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34489 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 11, c5 == 9, 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" 
+rule "#34495 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 11, c5 == 3, 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" 
+rule "#34503 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 9, c5 == 9, 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" 
+rule "#34506 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 9, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34507 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 9, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34513 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 7, 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" 
+rule "#34515 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 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" 
+rule "#34523 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 2, c5 == 8, 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" 
+rule "#34529 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 3, c1 == 2, c5 == 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" 
+rule "#34533 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 12, 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" 
+rule "#34534 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 11, 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" 
+rule "#34535 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34536 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34537 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 8, 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" 
+rule "#34539 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 6, 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" 
+rule "#34540 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 5, 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" 
+rule "#34541 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7468 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34544 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 2, c1 == 1, 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" 
+rule "#34545 poker_hand = 2 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34547 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 11, 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" 
+rule "#34549 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 9, 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" 
+rule "#34553 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 5, 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" 
+rule "#34556 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 3, c5 == 12, 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" 
+rule "#34564 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 == 4, c3 <= 11.5, c5 > 13, c1 <= 7.0, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 3, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#7478 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34569 poker_hand = 3 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)
+		 examples.Poker(c4 == 4, c2 == 1, c3 == 1, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#34571 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 13, c5 == 12, 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" 
+rule "#34572 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 13, c5 == 11, 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" 
+rule "#34578 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 13, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34580 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 13, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34581 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 13, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34586 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 13, c5 == 1, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34592 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 13, c5 == 1, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34595 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34596 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34597 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 11, 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" 
+rule "#34598 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 10, 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" 
+rule "#34600 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34601 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34602 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34603 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34607 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 4, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34609 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34614 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 4, c2 == 3, 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" 
+rule "#34615 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 4, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34617 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 3, 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" 
+rule "#34618 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34619 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 12, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34631 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 12, c5 == 3, 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" 
+rule "#34633 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 12, c5 == 1, 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" 
+rule "#34635 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 10, 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" 
+rule "#34638 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 7, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34639 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 7, c5 == 12, 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" 
+rule "#34640 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 7, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34650 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 7, c5 == 1, 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" 
+rule "#34651 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34654 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 3, 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" 
+rule "#34655 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34656 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 11, c2 == 1, 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" 
+rule "#34663 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 10, c2 == 7, 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" 
+rule "#34664 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 10, c2 == 6, 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" 
+rule "#34665 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 10, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34667 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 10, c2 == 3, 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" 
+rule "#34672 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 > 6.0, c5 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 9, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34677 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 9, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 9, c2 == 4, 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" 
+rule "#34684 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 8, c2 == 12, 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" 
+rule "#34685 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 8, c2 == 11, 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" 
+rule "#34687 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 8, c2 == 9, 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" 
+rule "#34689 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 8, c2 == 7, 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" 
+rule "#34690 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 8, c2 == 6, 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" 
+rule "#34691 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 8, c2 == 5, 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" 
+rule "#34694 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 8, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34697 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34701 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34703 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34705 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34706 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 3, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34710 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 3, c2 == 9, 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" 
+rule "#34720 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 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 7, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 6, c2 == 13, 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" 
+rule "#34725 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34726 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 6, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34727 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 6, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34731 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 6, c2 == 3, 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" 
+rule "#34732 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 <= 13, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 6, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7517 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34734 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 5, c5 == 13, 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" 
+rule "#34736 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 5, c5 == 11, 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" 
+rule "#34739 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 5, c5 == 8, 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" 
+rule "#34740 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 5, c5 == 7, 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" 
+rule "#34741 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 5, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 5, c5 == 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" 
+rule "#34743 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 5, c5 == 4, 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" 
+rule "#34748 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 12, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7529 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34755 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 12, c5 == 6, 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" 
+rule "#34761 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7531 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34762 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 > 2.0, c4 <= 4.5, c3 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34764 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34767 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34768 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 4, c2 == 4, 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" 
+rule "#34772 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 > 2.0, c4 <= 4.5, c3 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 3, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34774 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 3, c2 == 11, 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" 
+rule "#34778 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 3, c2 == 7, 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" 
+rule "#34779 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 3, c2 == 6, 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" 
+rule "#34783 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 3, c2 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7538 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34784 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 3, c2 == 1, 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" 
+rule "#34785 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#34787 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 2, c2 == 12, c5 == 12, 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" 
+rule "#34789 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 2, c2 == 12, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34801 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 2, c2 == 9, c5 == 13, 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" 
+rule "#34809 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 2, c2 == 9, c5 == 5, 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" 
+rule "#34814 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 2, c2 == 8, 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" 
+rule "#34815 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 2, c2 == 7, 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" 
+rule "#34822 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)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 1, c2 == 13, 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" 
+rule "#34823 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 1, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34830 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, c1 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 1, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34831 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 1, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34832 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 13, c1 == 1, c2 == 3, 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" 
+rule "#34835 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 13, c2 == 13, 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" 
+rule "#34840 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 13, c2 == 8, 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" 
+rule "#34843 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 13, c2 == 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" 
+rule "#34844 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 13, c2 == 4, 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" 
+rule "#34845 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 13, c2 == 3, 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" 
+rule "#34848 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 == 1, c3 > 9.5, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 12, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#34850 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 12, c2 == 11, 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" 
+rule "#34854 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 12, c2 == 7, 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" 
+rule "#34856 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 == 1, c3 > 9.5, c5 > 1.5, c4 <= 3.0, c1 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 12, c2 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#7560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34861 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 13, 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" 
+rule "#34867 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 10, c5 == 10, 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" 
+rule "#34870 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 10, c5 == 7, 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" 
+rule "#34874 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 10, c5 == 3, 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" 
+rule "#34877 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 9, 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" 
+rule "#34878 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 8, 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" 
+rule "#34880 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 6, 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" 
+rule "#34882 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34883 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 11, c2 == 3, 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" 
+rule "#34888 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 10, c5 == 11, 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" 
+rule "#34890 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 10, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7575 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34893 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, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 10, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34894 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, c3 <= 8.0, c5 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 10, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34896 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 10, c5 == 3, 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" 
+rule "#34897 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, c3 <= 8.0, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 10, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7579 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34898 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 10, c5 == 1, 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" 
+rule "#34901 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 9, c2 == 11, 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" 
+rule "#34903 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 9, c2 == 9, 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" 
+rule "#34905 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 9, c2 == 7, 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" 
+rule "#34906 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, c4 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 9, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 9, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#34912 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 8, c5 == 13, 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" 
+rule "#34914 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 8, c5 == 11, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7585 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34916 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 8, c5 == 11, c2 == 11, 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" 
+rule "#34931 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, c5 <= 6.5, c4 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 8, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7588 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34932 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, c5 > 6.5, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 8, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7590 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34935 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, c4 > 2.0, c3 <= 4.0, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 8, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34948 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 10, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34949 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 10, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34953 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34954 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34956 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 6, 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" 
+rule "#34959 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 4, c2 == 12, 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" 
+rule "#34963 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 4, c2 == 8, 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" 
+rule "#34969 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 4, c2 == 2, 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" 
+rule "#34971 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 3, 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" 
+rule "#34973 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 <= 12.5, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 7, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34978 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 5, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7607 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#34982 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 5, c5 == 6, 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" 
+rule "#34983 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 5, c5 == 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" 
+rule "#34986 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 5, c5 == 2, 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" 
+rule "#34988 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34990 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34991 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 10, 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" 
+rule "#34996 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 9, c5 == 9, 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" 
+rule "#34998 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 9, c5 == 7, 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" 
+rule "#35005 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7618 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35006 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35007 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35012 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 5, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35018 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 5, c5 == 3, 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" 
+rule "#35023 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35024 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 1, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35025 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 1, c5 == 12, 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" 
+rule "#35026 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 4, c2 == 1, c5 == 11, 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" 
+rule "#35041 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 3, c2 == 9, 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" 
+rule "#35042 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 == 2, c4 <= 10.0, c3 > 2.5, c1 <= 6.5, c2 <= 7.0, c5 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 3, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#35045 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 3, c2 == 5, 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" 
+rule "#35046 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 3, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7629 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35048 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 3, c2 == 2, 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" 
+rule "#35050 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35054 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 2, c2 == 9, 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" 
+rule "#35055 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 2, c2 == 8, 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" 
+rule "#35057 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35062 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 2, c2 == 1, 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" 
+rule "#35065 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 11, 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" 
+rule "#35066 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 10, 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" 
+rule "#35068 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 8, 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" 
+rule "#35069 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)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35070 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 6, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35077 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 6, c5 == 6, 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" 
+rule "#35084 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35086 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 12, c1 == 1, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35091 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 12, c1 == 11, 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" 
+rule "#35096 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, c4 <= 8.5, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 12, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35100 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35104 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 9, 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" 
+rule "#35105 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 8, 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" 
+rule "#35106 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 7, 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" 
+rule "#35108 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 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" 
+rule "#35111 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7656 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35112 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 13, c5 == 1, 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" 
+rule "#35113 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 == 2, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 12, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35114 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 12, c1 == 12, 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" 
+rule "#35119 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 12, c1 == 9, c5 == 11, 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" 
+rule "#35124 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 == 2, c4 <= 13, c1 > 2.5, c5 > 4.0, c2 <= 4.5, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 12, c1 == 9, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7666 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35125 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 == 2, c4 <= 13, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 12, c1 == 9, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35134 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 12, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35138 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 11, c1 == 13, 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" 
+rule "#35140 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 == 1, c1 <= 10.5, c2 <= 1.5, c3 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#7669 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35141 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 11, c1 == 10, 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" 
+rule "#35145 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 11, c1 == 6, 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" 
+rule "#35147 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 11, c1 == 4, 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" 
+rule "#35152 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 == 4, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 > 2.0, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35156 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35158 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 6, 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" 
+rule "#35159 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 5, 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" 
+rule "#35160 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35161 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 3, 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" 
+rule "#35162 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 2, 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" 
+rule "#35167 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 1, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 10, c1 == 1, c5 == 3, 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" 
+rule "#35177 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 9, c1 == 12, 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" 
+rule "#35179 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 9, c1 == 10, 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" 
+rule "#35181 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 9, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35182 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 9, c1 == 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" 
+rule "#35189 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 13, 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" 
+rule "#35191 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 12, c5 == 12, 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" 
+rule "#35199 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 12, c5 == 4, 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" 
+rule "#35204 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 10, 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" 
+rule "#35208 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 6, 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" 
+rule "#35211 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35213 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 2, c5 == 12, 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" 
+rule "#35223 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 8, c1 == 2, c5 == 2, 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" 
+rule "#35227 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35229 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35232 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35233 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35235 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35236 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 7, c1 == 3, 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" 
+rule "#35239 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 13, 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" 
+rule "#35241 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 11, 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" 
+rule "#35243 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 9, 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" 
+rule "#35244 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, c2 <= 11.5, c1 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35246 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 6, 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" 
+rule "#35249 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35251 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 6, c5 == 1, 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" 
+rule "#35252 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35253 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 12, 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" 
+rule "#35255 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35256 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35259 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35261 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 4, 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" 
+rule "#35264 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35265 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 4, c1 == 13, 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" 
+rule "#35266 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 4, c1 == 12, 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" 
+rule "#35270 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 4, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35272 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 4, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35273 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35276 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 4, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35279 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 3, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#35282 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 3, c1 == 9, 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" 
+rule "#35284 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 3, c1 == 7, 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" 
+rule "#35289 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#35290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 3, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35291 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35293 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#35294 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 10, 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" 
+rule "#35296 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35297 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35299 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 5, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35309 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 5, c5 == 3, 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" 
+rule "#35313 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, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 2, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 1, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35321 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35322 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 1, c5 == 7, 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" 
+rule "#35323 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 1, c5 == 6, 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" 
+rule "#35328 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)
+		 examples.Poker(c4 == 3, c3 == 11, c2 == 1, c5 == 1, 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" 
+rule "#35329 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35332 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 12, c5 == 11, 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" 
+rule "#35340 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 12, c5 == 3, 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" 
+rule "#35344 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 == 2, c1 > 6.5, c2 <= 1.0, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35345 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35346 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 8, 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" 
+rule "#35347 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 7, 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" 
+rule "#35349 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 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" 
+rule "#35352 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 2, c5 == 13, 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" 
+rule "#35361 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, c5 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 13, c2 == 2, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35366 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 12, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35368 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 12, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35373 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 12, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35374 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 12, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35378 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 12, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35379 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 11, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35383 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 11, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35384 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 11, c5 == 8, 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" 
+rule "#35389 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 11, c5 == 6, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35398 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 11, c5 == 6, c2 == 1, 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" 
+rule "#35399 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 11, c5 == 5, 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" 
+rule "#35405 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35408 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35409 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35411 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 7, c5 == 12, 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" 
+rule "#35416 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 7, c5 == 7, 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" 
+rule "#35423 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35425 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35431 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 2, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 2, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35433 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 2, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35437 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 10, c2 == 2, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35441 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 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" 
+rule "#35445 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 11, c5 == 11, 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" 
+rule "#35449 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 11, c5 == 7, 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" 
+rule "#35451 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 11, c5 == 5, 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" 
+rule "#35457 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, c1 <= 12.0, c4 <= 10.5, c3 <= 5.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#7764 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35459 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 8, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35463 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 8, c5 == 8, 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" 
+rule "#35471 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 7, 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" 
+rule "#35472 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 6, 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" 
+rule "#35473 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 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" 
+rule "#35474 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 4, 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" 
+rule "#35475 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 3, 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" 
+rule "#35476 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 2, 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" 
+rule "#35481 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 > 4.5, c4 > 6, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 1, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35486 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 1, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35487 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 9, c2 == 1, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35490 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35491 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35493 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 10, 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" 
+rule "#35494 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 9, 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" 
+rule "#35495 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 8, 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" 
+rule "#35504 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 6, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35505 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 6, c5 == 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" 
+rule "#35512 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 3, 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" 
+rule "#35514 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 8, c2 == 1, 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" 
+rule "#35516 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 12, 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" 
+rule "#35517 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 11, 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" 
+rule "#35518 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 10, 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" 
+rule "#35519 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 9, 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" 
+rule "#35523 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 5, 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" 
+rule "#35526 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 2, 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" 
+rule "#35527 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 7, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35529 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35532 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 11, c2 == 11, 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" 
+rule "#35533 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 11, c2 == 10, 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" 
+rule "#35542 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 11, c2 == 1, 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" 
+rule "#35544 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35547 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 6, 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" 
+rule "#35548 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 5, 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" 
+rule "#35549 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 4, 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" 
+rule "#35551 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 6, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35558 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 8, c2 == 13, 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" 
+rule "#35559 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, c4 <= 10.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35561 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 8, c2 == 10, 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" 
+rule "#35580 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 6, c2 == 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" 
+rule "#35584 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, c4 > 10.5, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 6, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35587 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 5, c2 == 11, 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" 
+rule "#35588 poker_hand = 2 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 5, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35594 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 5, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35596 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 5, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35600 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 5, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35603 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 4, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35604 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 4, c2 == 11, 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" 
+rule "#35606 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 == 3, c5 <= 11.0, c3 > 1.0, c4 <= 9.0, c1 <= 12.5, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 4, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35607 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 4, c2 == 4, 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" 
+rule "#35612 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 4, c2 == 3, 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" 
+rule "#35614 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 == 3, c5 <= 11.0, c3 > 1.0, c4 > 9.0, c1 > 6.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 4, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35616 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 3, c2 == 12, 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" 
+rule "#35619 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 3, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#35622 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 3, c2 == 6, 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" 
+rule "#35623 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, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 3, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35624 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35626 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 3, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35627 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35629 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 12, 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" 
+rule "#35630 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35631 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 10, 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" 
+rule "#35633 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35641 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 4, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35648 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 4, c2 == 2, 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" 
+rule "#35650 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 2, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35653 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 13, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35660 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 13, c5 == 6, 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" 
+rule "#35661 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 13, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35669 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 12, c5 == 10, 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" 
+rule "#35675 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 12, c5 == 4, 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" 
+rule "#35676 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 12, c5 == 3, 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" 
+rule "#35679 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 11, 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" 
+rule "#35689 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 9, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 9, c5 == 3, 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" 
+rule "#35694 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 8, 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" 
+rule "#35698 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 4, 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" 
+rule "#35699 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)
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 10, c1 == 1, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35705 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 13, c5 == 10, 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" 
+rule "#35706 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 13, c5 == 9, 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" 
+rule "#35707 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 13, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35712 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 13, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#35713 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 13, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35717 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 12, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35722 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 12, c1 == 6, 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" 
+rule "#35725 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 12, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35726 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35729 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35731 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 11, c1 == 10, 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" 
+rule "#35733 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35735 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35736 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 11, c1 == 5, 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" 
+rule "#35743 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 10, c1 == 11, 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" 
+rule "#35747 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 10, c1 == 7, 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" 
+rule "#35748 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 10, c1 == 6, 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" 
+rule "#35751 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 10, c1 == 3, 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" 
+rule "#35753 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 10, c1 == 1, 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" 
+rule "#35755 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, c4 > 5.0, c3 <= 4.0, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 11, 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" 
+rule "#35758 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, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35761 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 9, c1 == 11, 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" 
+rule "#35764 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 == 3, c4 > 2.5, c5 > 11.5, c1 <= 10.0, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 9, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35774 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 6, 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" 
+rule "#35779 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 8, c5 == 1, 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" 
+rule "#35782 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 7, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35787 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35789 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 7, c1 == 4, 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" 
+rule "#35791 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 7, c1 == 2, 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" 
+rule "#35795 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 <= 12.5, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35796 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 10, 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" 
+rule "#35797 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 9, 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" 
+rule "#35798 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 8, 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" 
+rule "#35799 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 7, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35806 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 7, c5 == 6, 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" 
+rule "#35812 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 6, 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" 
+rule "#35821 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 1, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35823 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 1, c5 == 7, 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" 
+rule "#35824 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 6, c1 == 1, c5 == 6, 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" 
+rule "#35835 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 5, c5 == 8, 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" 
+rule "#35837 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 5, c5 == 6, 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" 
+rule "#35838 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, c4 > 1.0, c1 <= 3.5, c5 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 5, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7874 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35839 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 5, c5 == 4, 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" 
+rule "#35842 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 5, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35843 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 4, c1 == 13, 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" 
+rule "#35844 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 4, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35848 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 4, c1 == 8, 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" 
+rule "#35849 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35862 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 10, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35868 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 10, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35871 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 10, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35874 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35883 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 4, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35886 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 4, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35892 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 3, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35894 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 12, 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" 
+rule "#35897 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 9, 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" 
+rule "#35900 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 8, c5 == 11, 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" 
+rule "#35903 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 8, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35906 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 8, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35914 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35918 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35923 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35932 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 9, c1 == 3, 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" 
+rule "#35936 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35939 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 4, 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" 
+rule "#35941 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)
+		 examples.Poker(c4 == 3, c3 == 9, c2 == 1, c5 == 2, 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" 
+rule "#35943 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 13, c5 == 13, 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" 
+rule "#35945 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 13, c5 == 11, 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" 
+rule "#35947 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 > 2.5, c3 <= 10.0, c4 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 13, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35952 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 13, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35955 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 13, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35961 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 12, c1 == 9, 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" 
+rule "#35964 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 > 10.0, c3 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 12, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35966 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 12, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35967 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 12, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#35971 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 10, c1 == 13, 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" 
+rule "#35979 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 10, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7902 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#35981 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 10, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#35986 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 7, 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" 
+rule "#35987 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 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" 
+rule "#35988 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 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35991 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35992 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 1, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35994 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36002 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 12, c5 == 1, c1 == 3, 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" 
+rule "#36007 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36012 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 11, c1 == 6, 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" 
+rule "#36013 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36017 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 11, c1 == 1, 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" 
+rule "#36020 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 11, 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" 
+rule "#36021 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 10, 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" 
+rule "#36022 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36023 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 == 2, c1 <= 12.0, c3 <= 2.0, c2 > 5.0, c4 <= 11.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36025 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 7, c1 == 12, 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" 
+rule "#36034 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 == 2, c1 <= 12.0, c3 <= 2.0, c2 > 5.0, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 7, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36046 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 5, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36047 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 5, c1 == 4, 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" 
+rule "#36051 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 == 1, c4 > 1.0, c1 > 2.0, c2 > 1.0, c5 > 2.0, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36052 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 3, 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" 
+rule "#36054 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 == 1, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 10, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7925 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36059 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 9, c1 == 9, 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" 
+rule "#36061 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 9, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36063 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 9, c1 == 5, 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" 
+rule "#36064 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 <= 2.5, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36065 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 9, c1 == 3, 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" 
+rule "#36074 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 8, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36075 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 8, c1 == 6, 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" 
+rule "#36077 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, c1 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 8, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36078 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 8, c1 == 3, 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" 
+rule "#36081 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 7, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36083 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 7, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36084 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36086 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 7, c1 == 8, 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" 
+rule "#36090 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 7, c1 == 4, 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" 
+rule "#36093 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 7, c1 == 1, 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" 
+rule "#36094 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 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36096 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 11, 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" 
+rule "#36100 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 7, 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" 
+rule "#36101 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, c5 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36106 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 4, c5 == 10, 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" 
+rule "#36108 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, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 6, c1 == 4, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#7943 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36124 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 5, s3 == 2, c1 == 10, 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" 
+rule "#36125 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 5, s3 == 2, c1 == 9, 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" 
+rule "#36136 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 12, 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" 
+rule "#36138 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#7949 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36141 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36142 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36144 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 4, 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" 
+rule "#36146 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 4, c1 == 2, 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" 
+rule "#36149 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 13, 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" 
+rule "#36150 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36151 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36152 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 10, 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" 
+rule "#36153 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 9, 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" 
+rule "#36155 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 7, 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" 
+rule "#36157 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 5, 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" 
+rule "#36158 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 4, 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" 
+rule "#36170 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 == 1, c5 > 1.0, c1 > 1.0, c2 > 1.5, c3 <= 1.0, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 2, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#36172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 2, c5 == 1, 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" 
+rule "#36173 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 2, c1 == 1, 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" 
+rule "#36174 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 13, 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" 
+rule "#36175 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 12, 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" 
+rule "#36178 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 5, 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" 
+rule "#36183 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)
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36196 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36198 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 8, c2 == 1, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36199 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 13, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36200 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 13, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36201 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 13, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36203 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 13, c1 == 9, 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" 
+rule "#36206 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 13, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36208 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 13, c1 == 4, 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" 
+rule "#36209 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 == 4, c5 <= 13, c2 <= 5.0, c3 > 1.5, c4 <= 9.0, c1 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 13, c1 == 3, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#36212 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 13, c1 == 3, c2 == 10, 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" 
+rule "#36223 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 13, c1 == 1, 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" 
+rule "#36228 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36229 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 12, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36233 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 12, c1 == 4, 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" 
+rule "#36242 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36243 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 12, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36244 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 12, c1 == 7, 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" 
+rule "#36251 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 11, 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" 
+rule "#36254 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 5, 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" 
+rule "#36258 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 4, 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" 
+rule "#36261 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, c1 > 3.5, c5 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 11, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36264 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 10, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36266 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 10, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36269 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 10, c1 == 8, s1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#36270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 10, c1 == 8, s1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36272 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36277 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 10, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36278 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36279 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36280 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 11, 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" 
+rule "#36282 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36284 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 6, c2 == 10, 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" 
+rule "#36292 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 6, c2 == 6, 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" 
+rule "#36299 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, c1 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36301 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 3, c2 == 12, 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" 
+rule "#36305 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 3, c2 == 8, 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" 
+rule "#36306 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 == 3, c4 > 10.0, c3 > 8.5, c2 <= 7.5, c1 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 3, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#36314 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 1, c2 == 13, 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" 
+rule "#36325 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 1, c2 == 2, 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" 
+rule "#36326 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 9, c1 == 1, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36338 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 8, c2 == 11, c1 == 4, 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" 
+rule "#36339 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 8, c2 == 11, c1 == 3, 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" 
+rule "#36345 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 8, c2 == 7, 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" 
+rule "#36346 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 8, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36347 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 8, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36349 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36356 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#36357 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36358 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#36360 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36361 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36362 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 3, 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" 
+rule "#36364 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 7, c1 == 1, 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" 
+rule "#36367 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 11, 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" 
+rule "#36368 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 10, 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" 
+rule "#36369 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36374 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36375 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 8, c2 == 8, 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" 
+rule "#36383 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36385 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 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" 
+rule "#36387 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36393 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 4, c2 == 6, 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" 
+rule "#36399 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 3, 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" 
+rule "#36400 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 2, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8009 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36405 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 2, c2 == 8, 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" 
+rule "#36406 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 6, c1 == 2, c2 == 7, 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" 
+rule "#36415 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36419 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36420 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 7, 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" 
+rule "#36422 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 5, 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" 
+rule "#36426 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 4, c1 == 10, 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" 
+rule "#36432 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 <= 2.5, c3 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36436 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36437 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 5, c2 == 2, 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" 
+rule "#36440 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 12, 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" 
+rule "#36441 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, c5 <= 11.5, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36443 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36444 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36448 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 4, 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" 
+rule "#36449 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 == 3, c2 <= 10.5, c3 <= 2.0, c1 <= 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#36453 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 2, c2 == 10, 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" 
+rule "#36457 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 2, c2 == 3, 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" 
+rule "#36466 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 1, c2 == 10, 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" 
+rule "#36475 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 4, c1 == 1, c2 == 1, 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" 
+rule "#36480 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 2, c2 == 10, 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" 
+rule "#36484 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 2, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36486 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 2, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36490 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 13, 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" 
+rule "#36493 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36495 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 8, 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" 
+rule "#36496 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36497 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 6, 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" 
+rule "#36498 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 5, 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" 
+rule "#36499 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8043 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36500 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 3, 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" 
+rule "#36502 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)
+		 examples.Poker(c4 == 3, c3 == 7, c5 == 1, c1 == 1, 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" 
+rule "#36503 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 13, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36504 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 13, c2 == 12, 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" 
+rule "#36511 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 13, c2 == 11, c1 == 7, 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" 
+rule "#36515 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, c1 > 5.5, c5 > 2.5, c3 > 8.0, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 13, c2 == 11, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8053 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36521 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 13, c2 == 7, 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" 
+rule "#36527 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 13, c2 == 5, c1 == 9, 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" 
+rule "#36531 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, c4 > 9.5, c1 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 13, c2 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36537 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 13, c2 == 3, 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" 
+rule "#36538 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 13, c2 == 2, 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" 
+rule "#36542 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 12, c2 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8061 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36543 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 12, c2 == 10, 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" 
+rule "#36544 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 12, c2 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8066 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36547 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.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 12, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36548 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 12, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36554 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 12, 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" 
+rule "#36555 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36561 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 9, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36566 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 9, c1 == 4, 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" 
+rule "#36580 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 8, c1 == 3, 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" 
+rule "#36582 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 8, c1 == 1, 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" 
+rule "#36588 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36589 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 11, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36590 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 10, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36591 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 10, c1 == 12, 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" 
+rule "#36592 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 10, c1 == 11, 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" 
+rule "#36596 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 10, c1 == 7, 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" 
+rule "#36601 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 10, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36603 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36605 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36607 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 9, 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" 
+rule "#36615 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 7, c1 == 7, 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" 
+rule "#36617 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 7, c1 == 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" 
+rule "#36620 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 > 9.0, c3 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 7, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8084 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36633 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 1, c1 == 7, 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" 
+rule "#36634 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 9, c2 == 1, c1 == 6, 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" 
+rule "#36642 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 11, 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" 
+rule "#36643 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8090 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36648 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 10, c2 == 8, 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" 
+rule "#36655 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 10, c2 == 1, 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" 
+rule "#36657 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 8, 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" 
+rule "#36659 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36660 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 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" 
+rule "#36661 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 4, 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" 
+rule "#36662 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 3, 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" 
+rule "#36672 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 2, c2 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36674 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 8, c1 == 2, c2 == 2, 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" 
+rule "#36677 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 13, 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" 
+rule "#36678 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 11, 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" 
+rule "#36690 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 10, c2 == 3, 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" 
+rule "#36695 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 7, 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" 
+rule "#36696 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36697 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36698 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36702 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36703 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 6, c1 == 12, 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" 
+rule "#36704 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#36708 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 6, c1 == 10, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#36716 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 6, c1 == 10, c2 == 2, 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" 
+rule "#36725 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 <= 12.5, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 6, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8112 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36728 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 12, c2 == 13, 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" 
+rule "#36736 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 12, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36742 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 11, c2 == 12, 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" 
+rule "#36743 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 11, c2 == 11, 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" 
+rule "#36747 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 11, c2 == 7, 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" 
+rule "#36754 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8117 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36755 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, c2 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8118 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36757 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 7, 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" 
+rule "#36758 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, c2 > 4.5, c4 > 5.0, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8121 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36759 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36760 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 4, 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" 
+rule "#36762 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 5, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36766 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 11, 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" 
+rule "#36768 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 9, 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" 
+rule "#36769 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 8, 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" 
+rule "#36770 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8130 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36771 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 == 2, c4 <= 3.5, c1 <= 10.0, c3 <= 3.0, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#36772 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 5, 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" 
+rule "#36774 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36780 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 3, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36781 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 3, c2 == 9, 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" 
+rule "#36783 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 3, c2 == 7, 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" 
+rule "#36784 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 > 6.5, c2 <= 8.5, c5 <= 7.0, c3 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 3, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#36786 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#36791 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 12, 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" 
+rule "#36794 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36798 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36801 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 5, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36808 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 5, c1 == 3, 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" 
+rule "#36812 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 2, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36823 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 1, c1 == 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" 
+rule "#36824 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 1, c1 == 4, 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" 
+rule "#36826 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)
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 1, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36827 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 6, c5 == 1, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#36828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 13, c2 == 13, 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" 
+rule "#36832 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 13, c2 == 9, 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" 
+rule "#36837 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 13, c2 == 4, 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" 
+rule "#36839 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 13, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36842 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 12, 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" 
+rule "#36845 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 9, 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" 
+rule "#36847 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 8, c2 == 12, 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" 
+rule "#36850 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 8, c2 == 9, 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" 
+rule "#36860 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 6, 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" 
+rule "#36861 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 5, 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" 
+rule "#36868 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 2, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 2, c2 == 2, 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" 
+rule "#36877 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 12, c5 == 1, 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" 
+rule "#36881 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, c1 > 4.0, c5 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 11, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36883 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 11, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36885 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 11, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36889 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 11, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36891 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 10, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36894 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 10, c2 == 10, 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" 
+rule "#36895 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 10, c2 == 9, 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" 
+rule "#36897 poker_hand = 5 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 10, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#36900 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 10, c2 == 4, 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" 
+rule "#36901 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 10, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8159 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36903 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 10, c2 == 1, 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" 
+rule "#36905 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 9, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36906 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 9, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36907 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 9, c2 == 10, 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" 
+rule "#36909 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 9, c2 == 8, 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" 
+rule "#36911 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 9, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36913 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 9, c2 == 4, 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" 
+rule "#36918 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 12, 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" 
+rule "#36919 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 11, 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" 
+rule "#36921 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36922 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 8, 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" 
+rule "#36923 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 7, 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" 
+rule "#36925 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 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" 
+rule "#36926 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 4, 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" 
+rule "#36927 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 3, 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" 
+rule "#36928 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 2, 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" 
+rule "#36929 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 8, c5 == 1, 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" 
+rule "#36932 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 7, c2 == 11, 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" 
+rule "#36933 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 7, c2 == 10, 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" 
+rule "#36934 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 7, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#36936 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 7, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#36938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 7, c2 == 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" 
+rule "#36940 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 7, c2 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36943 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 6, c2 == 13, 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" 
+rule "#36945 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 6, c2 == 11, 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" 
+rule "#36946 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 6, c2 == 10, 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" 
+rule "#36949 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, c5 <= 2.0, c1 > 8, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 6, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36960 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 6, c2 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#36964 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 6, c2 == 1, c5 == 4, 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" 
+rule "#36969 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 5, c5 == 12, 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" 
+rule "#36972 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 5, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36973 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 5, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36974 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 5, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#36975 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 5, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36978 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#36983 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 4, c5 == 11, 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" 
+rule "#36984 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, c4 <= 8.0, c1 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 4, c5 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8199 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#36987 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, c1 <= 6.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 4, c5 == 10, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36999 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 4, c5 == 7, 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" 
+rule "#37000 poker_hand = 4 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 4, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#37002 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 4, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37004 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 4, c5 == 2, 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" 
+rule "#37007 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 3, c2 == 12, 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" 
+rule "#37008 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 == 3, c2 > 1.5, c1 > 1.0, c3 <= 12.0, c4 <= 1.0, c5 > 3, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 3, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37013 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 3, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37014 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 3, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37015 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37023 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37025 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 7, 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" 
+rule "#37029 poker_hand = 5 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 4, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#37035 poker_hand = 8 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 4, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+end
+
+rule "#37041 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 2, c2 == 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" 
+rule "#37056 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 9, c5 == 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" 
+rule "#37057 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 9, c5 == 4, 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" 
+rule "#37064 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 8, c5 == 10, 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" 
+rule "#37065 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 8, c5 == 9, 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" 
+rule "#37072 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 8, c5 == 2, 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" 
+rule "#37073 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 8, c5 == 1, 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" 
+rule "#37075 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 6, 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" 
+rule "#37078 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 3, 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" 
+rule "#37080 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)
+		 examples.Poker(c4 == 3, c3 == 5, c1 == 1, c2 == 1, 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" 
+rule "#37083 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 13, c5 == 11, 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" 
+rule "#37084 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 13, c5 == 10, 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" 
+rule "#37085 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 13, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37090 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 13, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37097 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 12, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37102 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 12, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37104 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 12, c2 == 4, 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" 
+rule "#37109 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 11, c2 == 12, 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" 
+rule "#37110 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37115 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 12, c5 == 11, c2 == 6, 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" 
+rule "#37134 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 11, c5 == 10, 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" 
+rule "#37135 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 11, c5 == 9, 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" 
+rule "#37139 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 11, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37141 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 11, c5 == 3, 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" 
+rule "#37142 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 11, c5 == 2, 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" 
+rule "#37144 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 10, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37145 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 10, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37148 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 10, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37150 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37153 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 10, c2 == 4, 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" 
+rule "#37155 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 10, c2 == 2, 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" 
+rule "#37158 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 8, c2 == 13, 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" 
+rule "#37159 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 8, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37165 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 8, c2 == 6, 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" 
+rule "#37170 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 8, c2 == 5, c5 == 9, 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" 
+rule "#37180 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 8, c2 == 3, 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" 
+rule "#37181 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 8, c2 == 2, 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" 
+rule "#37183 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 7, c2 == 13, 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" 
+rule "#37184 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 7, c2 == 12, 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" 
+rule "#37187 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 7, c2 == 9, 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" 
+rule "#37188 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 7, c2 == 8, 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" 
+rule "#37191 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 7, c2 == 5, 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" 
+rule "#37192 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 7, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37194 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 7, c2 == 2, 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" 
+rule "#37200 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37202 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37204 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#37207 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 3, c5 == 12, 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" 
+rule "#37212 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 3, c5 == 7, 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" 
+rule "#37216 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 3, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 3, c5 == 2, 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" 
+rule "#37218 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 3, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37220 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 6, c2 == 1, 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" 
+rule "#37221 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 5, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37224 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 5, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37225 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 5, c5 == 9, 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" 
+rule "#37227 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 5, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37228 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 5, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#37230 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 5, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37233 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 5, c5 == 1, 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" 
+rule "#37234 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 13, 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" 
+rule "#37235 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37236 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 11, 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" 
+rule "#37238 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 9, 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" 
+rule "#37239 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 8, 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" 
+rule "#37240 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37244 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 6, c5 == 10, 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" 
+rule "#37247 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 6, c5 == 7, 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" 
+rule "#37249 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, c2 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 6, c5 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8284 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37250 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 6, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#8285 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37254 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 5, 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" 
+rule "#37256 poker_hand = 6 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 4, c2 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
 end
 
-rule "#8288 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37262 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 3, c5 == 10, 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" 
+rule "#37263 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 3, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37268 poker_hand = 2 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 3, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37273 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 2, c5 == 12, 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" 
+rule "#37275 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 2, c5 == 10, 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" 
+rule "#37278 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 2, c5 == 7, 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" 
+rule "#37280 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 2, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37281 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 2, c5 == 4, 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" 
+rule "#37284 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 2, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8301 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37286 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 1, c2 == 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" 
+rule "#37287 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 1, c2 == 11, 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" 
+rule "#37290 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 1, c2 == 8, 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" 
+rule "#37291 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 1, c2 == 7, 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" 
+rule "#37292 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 1, c2 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37296 poker_hand = 4 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)
+		 examples.Poker(c4 == 3, c3 == 4, c1 == 1, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#37298 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 13, s1 == 4, 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" 
+rule "#37299 poker_hand = 2 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 13, s1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#8313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37300 poker_hand = 2 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 13, s1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37302 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 12, c5 == 13, 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" 
+rule "#37306 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 12, c5 == 9, 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" 
+rule "#37310 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 12, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37312 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 12, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37316 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 11, c2 == 12, 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" 
+rule "#37317 poker_hand = 6 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)
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 11, c2 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#37321 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 11, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37325 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 11, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37326 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 11, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 10, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37329 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 10, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37334 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 10, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37340 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 10, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37343 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 8, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37344 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 8, c2 == 11, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37349 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 8, c2 == 11, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37350 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 8, c2 == 11, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37358 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 8, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37363 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 8, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37364 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 8, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37370 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 7, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37371 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 7, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37373 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 7, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 7, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37376 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 7, c2 == 4, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37386 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 7, c2 == 4, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37389 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 7, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37390 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 7, c2 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37401 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 12, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37403 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 12, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37406 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37413 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 10, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37414 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 10, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37423 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37427 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 5, c2 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37432 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 5, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37438 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#37440 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 6, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37441 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 5, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37442 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 5, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37444 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 5, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 5, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37451 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37453 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37454 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37458 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 11, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37466 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 11, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37470 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37471 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37474 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37475 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37478 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 4, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37480 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 3, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37483 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 3, c2 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37484 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 3, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37485 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 3, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37488 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 3, c2 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37489 poker_hand = 7 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 3, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (7)");
+end
+
+rule "#37494 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 2, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37497 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 2, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37498 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 2, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37499 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37500 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 2, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37502 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 2, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37503 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 2, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37504 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 2, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37505 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 1, c2 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37506 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 1, c2 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 1, c2 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37510 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 1, c2 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37511 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 1, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37517 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 3, c1 == 1, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37523 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 12, c1 == 9, 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" 
+rule "#37530 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 12, c1 == 2, 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" 
+rule "#37536 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 11, c1 == 9, 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" 
+rule "#37543 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37545 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 10, 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" 
+rule "#37548 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 7, 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" 
+rule "#37549 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37551 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 4, 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" 
+rule "#37552 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 3, 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" 
+rule "#37553 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 13, c2 == 2, 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" 
+rule "#37556 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 == 4, c1 <= 1.0, c2 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#8336 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37557 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 12, c1 == 11, 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" 
+rule "#37558 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 12, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8338 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37562 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 12, c1 == 6, 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" 
+rule "#37563 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37565 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 12, c1 == 3, 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" 
+rule "#37568 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 11, s2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37574 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 10, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37581 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37583 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 10, c1 == 2, 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" 
+rule "#37585 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 <= 2.0, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 9, c2 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37586 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 9, c2 == 12, 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" 
+rule "#37588 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 9, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37591 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 9, c2 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37592 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 9, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37596 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 9, c2 == 2, 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" 
+rule "#37598 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 8, c1 == 13, 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" 
+rule "#37599 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 8, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37603 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 8, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37604 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 8, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37612 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 8, c1 == 6, c2 == 6, 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" 
+rule "#37613 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 8, c1 == 6, c2 == 5, 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" 
+rule "#37620 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 == 2, c1 > 11.5, c3 > 1.0, c2 > 8.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 8, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37634 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 13, c2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37636 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 13, c2 == 1, 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" 
+rule "#37637 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 12, 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" 
+rule "#37638 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 11, 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" 
+rule "#37641 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 8, 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" 
+rule "#37642 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, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37645 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 4, 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" 
+rule "#37647 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 6, c1 == 2, 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" 
+rule "#37650 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 12, 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" 
+rule "#37655 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 10, c2 == 10, 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" 
+rule "#37664 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 10, c2 == 1, 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" 
+rule "#37674 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 6, c2 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37676 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 6, c2 == 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" 
+rule "#37680 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 6, c2 == 1, 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" 
+rule "#37681 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 5, 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" 
+rule "#37694 poker_hand = 8 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 1, c2 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+end
+
+rule "#37695 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 5, c1 == 1, c2 == 3, 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" 
+rule "#37706 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 13, c2 == 5, 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" 
+rule "#37709 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 13, c2 == 2, 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" 
+rule "#37710 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 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 13, c2 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 10, 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" 
+rule "#37714 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 9, 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" 
+rule "#37715 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37716 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37717 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 4, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37728 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 3, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37734 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 3, c1 == 7, c2 == 8, 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" 
+rule "#37735 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 3, c1 == 7, c2 == 7, 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" 
+rule "#37740 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 3, c1 == 7, c2 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 3, c1 == 6, 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" 
+rule "#37743 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, c3 > 9.5, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 3, c1 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8388 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37748 poker_hand = 3 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 2, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#37750 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 2, c1 == 11, 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" 
+rule "#37752 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 2, c1 == 9, 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" 
+rule "#37756 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 2, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37764 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 1, c1 == 10, 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" 
+rule "#37765 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)
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37772 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 2, c5 == 1, c1 == 2, 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" 
+rule "#37774 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 13, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37779 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 13, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37785 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 13, c1 == 2, 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" 
+rule "#37788 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 12, 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" 
+rule "#37789 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 11, 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" 
+rule "#37791 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 9, 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" 
+rule "#37792 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, c4 <= 8.0, c2 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8408 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37793 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 7, 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" 
+rule "#37794 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 6, 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" 
+rule "#37796 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37797 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 3, 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" 
+rule "#37799 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37800 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 11, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37802 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 11, c1 == 11, 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" 
+rule "#37808 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 11, c1 == 5, 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" 
+rule "#37809 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 11, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37818 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 11, c1 == 2, c2 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37823 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 11, c1 == 2, c2 == 1, 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" 
+rule "#37824 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 11, c1 == 1, 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" 
+rule "#37825 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 10, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 10, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37829 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 10, c1 == 9, 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" 
+rule "#37836 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 > 7.0, c4 <= 8.5, c3 > 6, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 10, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37837 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 10, c1 == 1, 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" 
+rule "#37843 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 > 7.0, c4 <= 8.5, c3 <= 6, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 11, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37852 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 11, c1 == 1, 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" 
+rule "#37856 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 10, c1 == 10, 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" 
+rule "#37860 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 <= 7.0, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 10, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37862 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37879 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37880 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 4, c1 == 4, 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" 
+rule "#37884 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 3, 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" 
+rule "#37885 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 9, c2 == 2, 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" 
+rule "#37888 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 8, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37889 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 8, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37899 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 8, c1 == 1, 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" 
+rule "#37904 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 7, c2 == 9, 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" 
+rule "#37917 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 7, c2 == 5, c1 == 4, 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" 
+rule "#37920 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 7, c2 == 5, c1 == 1, 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" 
+rule "#37922 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 7, c2 == 3, 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" 
+rule "#37924 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 7, c2 == 1, 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" 
+rule "#37925 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 13, 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" 
+rule "#37926 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 == 4, c5 <= 10.5, c2 <= 11.5, c1 <= 10.0, c3 > 5.5, c4 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8456 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#37933 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 == 4, c5 > 10.5, c1 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 10, c1 == 3, 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" 
+rule "#37940 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 10, c1 == 1, 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" 
+rule "#37941 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 9, 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" 
+rule "#37945 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 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" 
+rule "#37946 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 6, c2 == 4, 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" 
+rule "#37951 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 5, c1 == 12, 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" 
+rule "#37952 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 5, c1 == 11, 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" 
+rule "#37956 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 5, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37957 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 5, c1 == 6, 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" 
+rule "#37958 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37962 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#37975 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 4, c1 == 12, c2 == 2, 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" 
+rule "#37976 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 4, c1 == 12, c2 == 1, 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" 
+rule "#37977 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 4, c1 == 11, 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" 
+rule "#37980 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 4, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37983 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 4, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#37984 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 4, c1 == 4, 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" 
+rule "#37985 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 4, c1 == 3, 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" 
+rule "#37994 poker_hand = 4 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 4, c1 == 2, c2 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#37995 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 4, c1 == 2, c2 == 4, 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" 
+rule "#38003 poker_hand = 2 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 3, c2 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38004 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 3, c2 == 9, 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" 
+rule "#38007 poker_hand = 2 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 3, c2 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38012 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 3, c2 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38021 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38025 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 12, c1 == 2, 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" 
+rule "#38038 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 11, c1 == 2, 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" 
+rule "#38042 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 8, 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" 
+rule "#38044 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 6, 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" 
+rule "#38045 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 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" 
+rule "#38046 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 4, 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" 
+rule "#38056 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 1, c1 == 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" 
+rule "#38060 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 == 4, c4 > 1.0, c3 <= 5.0, c5 > 3.5, c1 > 10.0, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 2, c2 == 1, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38065 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 1, s1 == 4, c1 == 10, 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" 
+rule "#38068 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 1, s1 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8502 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38072 poker_hand = 6 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)
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 1, s1 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#38076 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 3, c3 == 1, c5 == 1, s1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#38078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 13, s1 == 4, 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" 
+rule "#38080 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 13, s1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#38081 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 13, s1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38082 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 13, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#38090 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 13, c5 == 5, 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" 
+rule "#38092 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 13, c5 == 3, 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" 
+rule "#38094 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 13, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38095 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38097 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 10, 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" 
+rule "#38098 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 9, 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" 
+rule "#38100 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38102 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 12, c3 == 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" 
+rule "#38109 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 11, c3 == 11, 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" 
+rule "#38110 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 11, c3 == 10, 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" 
+rule "#38112 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, c1 > 7.5, c2 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 11, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38113 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 11, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38114 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 11, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38116 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 11, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38117 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 11, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38118 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 11, c3 == 2, 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" 
+rule "#38120 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 10, c5 == 13, 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" 
+rule "#38124 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 10, c5 == 9, 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" 
+rule "#38126 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 == 1, c2 > 4.0, c4 > 3.0, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 10, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38129 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 10, c5 == 4, 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" 
+rule "#38131 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 10, c5 == 2, 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" 
+rule "#38135 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 9, c3 == 11, 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" 
+rule "#38138 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 9, c3 == 8, 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" 
+rule "#38141 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, c4 <= 8.5, c1 <= 5.0, c2 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 9, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8531 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38144 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, c4 <= 8.5, c1 > 5.0, c2 <= 3.5, c3 <= 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 9, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38147 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 12, 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" 
+rule "#38149 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 10, 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" 
+rule "#38152 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 7, 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" 
+rule "#38154 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 4, c5 == 11, 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" 
+rule "#38164 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 4, c5 == 4, 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" 
+rule "#38168 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, c5 > 1.5, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38170 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 8, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38174 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 13, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38179 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 13, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38182 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 13, c5 == 2, 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" 
+rule "#38185 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, c2 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38189 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38191 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 5, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38192 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 5, c5 == 12, 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" 
+rule "#38205 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 7, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38211 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38213 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38219 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 6, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38225 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 6, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38226 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 6, c5 == 2, 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" 
+rule "#38228 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 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" 
+rule "#38235 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, c1 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 4, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38238 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 6, c3 == 4, c5 == 4, 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" 
+rule "#38247 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, c1 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 5, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38251 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 5, c5 == 9, c3 == 11, 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" 
+rule "#38260 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 5, c5 == 9, c3 == 2, 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" 
+rule "#38266 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 <= 13, c5 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 5, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38268 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 5, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38269 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 5, c5 == 1, 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" 
+rule "#38271 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 > 7.0, c5 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8556 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38273 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 <= 7.0, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38275 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 8, c3 == 13, 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" 
+rule "#38280 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.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38281 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 8, c3 == 7, 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" 
+rule "#38288 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, c2 > 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8562 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38297 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 1, c3 == 10, 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" 
+rule "#38303 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 4, c5 == 1, c3 == 4, 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" 
+rule "#38309 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 3, c5 == 11, 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" 
+rule "#38310 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 3, c5 == 10, 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" 
+rule "#38318 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 3, c5 == 7, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38322 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 3, c5 == 7, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38323 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 3, c5 == 7, c3 == 3, 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" 
+rule "#38326 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 3, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38327 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 3, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38329 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 3, c5 == 3, 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" 
+rule "#38332 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, c1 > 11.0, c4 > 1.5, c2 <= 3.0, c3 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 10, 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" 
+rule "#38337 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8574 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38343 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 6, c5 == 9, 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" 
+rule "#38350 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 == 4, c1 > 1.5, c2 <= 12.5, c3 > 13, c4 <= 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 6, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#38353 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38354 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#38355 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#38356 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 2, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38363 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 12, c5 == 8, 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" 
+rule "#38369 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 12, c5 == 2, 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" 
+rule "#38375 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 <= 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 10, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38376 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 10, c5 == 9, 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" 
+rule "#38388 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 9, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8580 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38389 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 9, c5 == 9, 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" 
+rule "#38398 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38399 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38400 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 6, 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" 
+rule "#38401 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 5, 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" 
+rule "#38403 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)
+		 examples.Poker(c4 == 2, c2 == 13, c1 == 1, c3 == 3, 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" 
+rule "#38408 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8585 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38409 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 13, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38410 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 13, c1 == 9, 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" 
+rule "#38413 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 13, c1 == 6, 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" 
+rule "#38417 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8593 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38421 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 11, 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" 
+rule "#38422 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 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 7, c1 == 10, 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" 
+rule "#38430 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 7, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38431 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 7, c1 == 7, 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" 
+rule "#38442 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 4, c1 == 11, 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" 
+rule "#38445 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 4, c1 == 8, 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" 
+rule "#38449 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 4, c1 == 4, 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" 
+rule "#38453 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#8603 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38461 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 11, s3 == 1, s4 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8604 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38462 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 <= 11.0, c2 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 11, s3 == 1, s4 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 13, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38468 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 13, c1 == 8, 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" 
+rule "#38480 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 <= 10.5, c2 <= 12.5, c5 > 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38483 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38484 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38486 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38488 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38490 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38493 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 9, c3 == 12, 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" 
+rule "#38495 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 9, c3 == 10, 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" 
+rule "#38498 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 9, c3 == 7, 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" 
+rule "#38504 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, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 9, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8617 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38505 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 8, 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" 
+rule "#38506 poker_hand = 5 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
 end
 
-rule "#8619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38508 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38510 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38512 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38515 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38517 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38518 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 8, 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" 
+rule "#38519 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38521 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 5, 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" 
+rule "#38523 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38524 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 8, c1 == 2, 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" 
+rule "#38531 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 7, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38535 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 7, c3 == 4, 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" 
+rule "#38538 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, c5 > 3.5, c1 > 13, c4 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 7, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38543 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 6, c1 == 9, 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" 
+rule "#38545 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, c5 > 3.5, c1 <= 13, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38546 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 6, c1 == 6, c3 == 13, 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" 
+rule "#38547 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 6, c1 == 6, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#8629 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38560 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 6, c1 == 4, 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" 
+rule "#38563 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38565 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 12, 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" 
+rule "#38566 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 <= 5.5, c3 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38567 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 10, 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" 
+rule "#38570 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 7, 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" 
+rule "#38572 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 6, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38583 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 6, c3 == 1, 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" 
+rule "#38587 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 2, 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" 
+rule "#38588 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38589 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38595 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 10, c3 == 10, 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" 
+rule "#38602 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 10, c3 == 3, 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" 
+rule "#38604 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 10, c3 == 1, 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" 
+rule "#38607 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 7, 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" 
+rule "#38608 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 6, 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" 
+rule "#38609 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 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" 
+rule "#38611 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8654 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38615 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 <= 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38616 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 11, 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" 
+rule "#38618 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)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8657 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38619 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38621 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38622 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38623 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38626 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 3, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38629 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 12, 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" 
+rule "#38630 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38632 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 9, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38636 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 9, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38645 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38647 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38648 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38651 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 12, c5 == 1, c1 == 2, 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" 
+rule "#38653 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 13, c5 == 13, 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" 
+rule "#38655 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, c2 <= 8.5, c1 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 13, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38657 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 13, c5 == 9, 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" 
+rule "#38662 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 13, c5 == 4, 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" 
+rule "#38663 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 13, c5 == 3, 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" 
+rule "#38666 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 12, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38670 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 12, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38672 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 12, c5 == 8, c1 == 12, 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" 
+rule "#38684 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 12, c5 == 7, 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" 
+rule "#38686 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 12, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38687 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 12, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 11, c1 == 13, 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" 
+rule "#38706 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 11, c1 == 10, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 11, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38715 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38717 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 12, 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" 
+rule "#38718 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 11, 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" 
+rule "#38720 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38722 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 7, 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" 
+rule "#38724 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 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" 
+rule "#38725 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38732 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 3, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38736 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 3, c1 == 3, 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" 
+rule "#38739 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38744 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 1, c1 == 9, 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" 
+rule "#38752 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 10, c5 == 1, c1 == 1, 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" 
+rule "#38754 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 9, c1 == 12, 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" 
+rule "#38757 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 9, c1 == 9, 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" 
+rule "#38759 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 9, c1 == 7, 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" 
+rule "#38761 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 9, c1 == 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" 
+rule "#38768 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 8, c5 == 11, 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" 
+rule "#38771 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 8, c5 == 8, 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" 
+rule "#38773 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, c3 > 4.5, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 8, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 8, c5 == 3, 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" 
+rule "#38777 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 8, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38778 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 8, c5 == 1, 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" 
+rule "#38782 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 13, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8695 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38790 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 13, c1 == 2, 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" 
+rule "#38792 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 12, 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" 
+rule "#38793 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 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38799 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 5, 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" 
+rule "#38800 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38801 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38802 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 7, c5 == 2, 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" 
+rule "#38804 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 6, c1 == 13, 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" 
+rule "#38809 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 6, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38810 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 6, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38811 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 6, c1 == 6, 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" 
+rule "#38812 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 6, c1 == 5, 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" 
+rule "#38815 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 6, c1 == 2, 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" 
+rule "#38817 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, c3 <= 11.0, c2 > 4.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 5, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8716 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38819 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, c2 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 5, c5 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8717 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38820 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 5, c5 == 10, 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" 
+rule "#38822 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 5, c5 == 8, 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" 
+rule "#38825 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 5, c5 == 5, 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" 
+rule "#38826 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 <= 12.5, c4 > 4.0, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 5, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38827 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38833 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 13, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38836 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 13, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38839 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 13, c5 == 4, 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" 
+rule "#38842 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 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 13, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38844 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 11, 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" 
+rule "#38849 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 9, c5 == 10, 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" 
+rule "#38857 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 9, c5 == 2, 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" 
+rule "#38858 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, c4 <= 12.5, c5 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 9, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38861 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 4, c1 == 6, 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" 
+rule "#38867 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, c4 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 3, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8735 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38869 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 3, c1 == 11, 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" 
+rule "#38870 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 3, c1 == 10, 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" 
+rule "#38872 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 3, c1 == 8, 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" 
+rule "#38874 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 3, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38877 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 3, c1 == 3, 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" 
+rule "#38880 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 2, c1 == 13, 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" 
+rule "#38883 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, c1 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 2, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8745 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38884 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 2, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8746 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38885 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 2, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38887 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 2, c1 == 6, 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" 
+rule "#38890 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 2, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38893 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 13, 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" 
+rule "#38895 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 11, 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" 
+rule "#38896 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 10, 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" 
+rule "#38897 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, c3 <= 8.0, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8756 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38904 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 5, c5 == 10, 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" 
+rule "#38908 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 5, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 5, c5 == 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" 
+rule "#38914 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 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8761 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#38916 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)
+		 examples.Poker(c4 == 2, c2 == 11, c3 == 1, c1 == 2, 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" 
+rule "#38920 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 13, c1 == 11, c5 == 13, 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" 
+rule "#38930 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 13, c1 == 11, c5 == 3, 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" 
+rule "#38933 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 13, c1 == 10, 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" 
+rule "#38934 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 13, c1 == 9, 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" 
+rule "#38940 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38943 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38947 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 12, c1 == 12, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#38956 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 12, c1 == 12, c5 == 1, 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" 
+rule "#38959 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 12, c1 == 9, 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" 
+rule "#38962 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 12, c1 == 6, 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" 
+rule "#38966 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 12, c1 == 2, 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" 
+rule "#38969 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 12, c1 == 1, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38976 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 12, c1 == 1, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#38980 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38981 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38983 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 10, 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" 
+rule "#38986 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38989 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 4, 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" 
+rule "#38992 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, c4 <= 4.5, c2 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 11, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#38993 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 10, c1 == 13, 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" 
+rule "#39000 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 10, c1 == 6, 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" 
+rule "#39001 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 10, c1 == 5, 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" 
+rule "#39004 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, c4 > 4.5, c3 > 2.5, c2 > 12.0, c5 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 10, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39006 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 13, 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" 
+rule "#39007 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 12, 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" 
+rule "#39013 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, c5 <= 13, c3 <= 3.0, c2 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39014 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 5, 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" 
+rule "#39015 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 4, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8791 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39019 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, c5 <= 13, c3 > 3.0, c2 <= 12.5, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 4, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8794 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39028 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 > 12.5, c4 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39029 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 9, c1 == 2, 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" 
+rule "#39031 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 <= 9.0, c3 <= 2, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8797 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39033 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 13, c1 == 11, 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" 
+rule "#39036 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 13, c1 == 8, 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" 
+rule "#39044 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39045 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 11, 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" 
+rule "#39047 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8802 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39049 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 7, 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" 
+rule "#39050 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39051 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39052 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 4, 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" 
+rule "#39054 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 8, c5 == 2, 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" 
+rule "#39059 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 10, 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" 
+rule "#39060 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 9, 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" 
+rule "#39067 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 8, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39068 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 8, c5 == 6, 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" 
+rule "#39075 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8815 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39077 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 4, 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" 
+rule "#39078 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, c3 <= 6.0, c5 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8820 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39079 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 7, c1 == 2, 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" 
+rule "#39083 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, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 13, c1 == 6, 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" 
+rule "#39095 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 11, 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" 
+rule "#39097 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 9, 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" 
+rule "#39103 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 8, c1 == 8, 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" 
+rule "#39110 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 > 1.0, c3 > 2.5, c5 <= 10.5, c2 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 8, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39111 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 6, 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" 
+rule "#39113 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 5, 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" 
+rule "#39116 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 2, 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" 
+rule "#39117 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 6, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39118 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 5, c1 == 13, 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" 
+rule "#39119 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 5, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8836 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39121 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 5, c1 == 10, 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" 
+rule "#39125 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 5, c1 == 6, 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" 
+rule "#39127 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, c1 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 5, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8843 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39130 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 > 7.0, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39131 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 4, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 4, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39133 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 4, c1 == 11, 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" 
+rule "#39137 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 4, c1 == 7, 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" 
+rule "#39138 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 4, c1 == 6, 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" 
+rule "#39146 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 11, 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" 
+rule "#39147 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 10, 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" 
+rule "#39156 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 7, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39159 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 7, c1 == 4, 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" 
+rule "#39165 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39166 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 3, 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" 
+rule "#39172 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 1, c1 == 9, 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" 
+rule "#39174 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 1, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39180 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 3, c5 == 1, c1 == 1, 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" 
+rule "#39182 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 13, 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" 
+rule "#39186 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 9, 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" 
+rule "#39187 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 8, 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" 
+rule "#39189 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)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 6, 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" 
+rule "#39190 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39191 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39192 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 3, 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" 
+rule "#39193 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39194 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 10, c3 == 1, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39196 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 12, 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" 
+rule "#39197 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 11, 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" 
+rule "#39200 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 9, c5 == 12, 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" 
+rule "#39203 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 == 4, c3 <= 2.5, c4 > 8.0, c1 <= 12.5, c2 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 9, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39212 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 8, 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" 
+rule "#39213 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 7, 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" 
+rule "#39215 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 5, 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" 
+rule "#39216 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39219 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 13, c1 == 1, 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" 
+rule "#39223 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 == 3, c5 > 3.5, c3 > 11.5, c1 > 1.0, c2 > 7, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 12, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8883 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39225 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 == 3, c5 > 3.5, c3 <= 11.5, c4 <= 10.0, c1 > 2.5, c2 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 12, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39230 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 12, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39232 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 12, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39233 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39235 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 11, c1 == 11, 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" 
+rule "#39238 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 == 3, c5 > 3.5, c3 <= 11.5, c4 > 10.0, c1 > 4.5, c2 > 10, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 11, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8891 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39239 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39247 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 10, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39248 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 10, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 10, c1 == 9, 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" 
+rule "#39253 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 10, c1 == 6, 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" 
+rule "#39255 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 10, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8898 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39256 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 10, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 10, c1 == 2, 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" 
+rule "#39258 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 10, c1 == 1, 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" 
+rule "#39259 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 9, c1 == 13, 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" 
+rule "#39260 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 9, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8902 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39263 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 == 1, c1 > 8.0, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39270 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 9, c1 == 2, 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" 
+rule "#39272 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 > 4.0, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39274 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39275 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 11, c1 == 11, 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" 
+rule "#39287 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 > 3.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39288 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39289 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39300 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 5, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39304 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 5, c1 == 1, 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" 
+rule "#39307 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 2, 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" 
+rule "#39308 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 8, c5 == 1, 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" 
+rule "#39314 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 12, c1 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39315 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, c2 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39329 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 11, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39336 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 11, c1 == 4, 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" 
+rule "#39340 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39341 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 9, 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" 
+rule "#39343 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 6, c5 == 7, 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" 
+rule "#39350 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 5, c1 == 13, 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" 
+rule "#39352 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39357 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 5, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39358 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 5, c1 == 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" 
+rule "#39362 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, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39366 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 4, c1 == 10, 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" 
+rule "#39374 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 == 3, c5 <= 8.5, c1 > 11.0, c2 <= 8.5, c3 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 4, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39375 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 4, c1 == 1, 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" 
+rule "#39376 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39377 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39383 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39384 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39390 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39391 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 3, c1 == 8, 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" 
+rule "#39392 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 3, c1 == 7, 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" 
+rule "#39399 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 2, 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" 
+rule "#39400 poker_hand = 5 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 3, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#39402 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 2, c5 == 12, 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" 
+rule "#39407 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 2, c5 == 7, 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" 
+rule "#39408 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 2, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#8936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39410 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 2, c5 == 4, 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" 
+rule "#39412 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 2, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39414 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 1, c1 == 13, 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" 
+rule "#39417 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 1, c1 == 11, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39418 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 1, c1 == 11, c5 == 11, 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" 
+rule "#39435 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 1, c1 == 4, 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" 
+rule "#39437 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)
+		 examples.Poker(c4 == 2, c2 == 9, c3 == 1, c1 == 2, 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" 
+rule "#39440 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 13, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8942 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39442 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 13, c1 == 10, 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" 
+rule "#39443 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 13, c1 == 9, 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" 
+rule "#39447 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 13, c1 == 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" 
+rule "#39448 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 == 4, c1 > 10.0, c3 > 2.0, c4 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39453 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 12, 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" 
+rule "#39456 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 9, 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" 
+rule "#39457 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 8, 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" 
+rule "#39458 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 7, 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" 
+rule "#39461 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, c4 > 2.5, c5 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 6, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39466 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 12, c1 == 6, c5 == 6, 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" 
+rule "#39478 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 12, 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" 
+rule "#39480 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 10, 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" 
+rule "#39481 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39482 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 8, 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" 
+rule "#39483 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 7, 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" 
+rule "#39487 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 <= 4.0, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39488 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39489 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 11, c5 == 1, 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" 
+rule "#39494 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 10, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39495 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 10, c1 == 8, 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" 
+rule "#39496 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 10, c1 == 7, 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" 
+rule "#39497 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 10, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39498 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 10, c1 == 5, 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" 
+rule "#39504 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 == 1, c5 <= 2.5, c1 <= 8.0, c2 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 10, c1 == 2, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#8980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39510 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 10, c1 == 2, c5 == 4, 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" 
+rule "#39516 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 9, c1 == 12, 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" 
+rule "#39519 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 == 4, c1 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 9, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#8988 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39523 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 == 4, c1 <= 13, c3 > 11.5, c2 <= 10.0, c4 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39524 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 9, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39536 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 9, c1 == 2, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39537 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 9, c1 == 2, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39540 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 8, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39541 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 8, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39548 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 8, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39551 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 8, c1 == 2, 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" 
+rule "#39554 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 12, 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" 
+rule "#39556 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#8993 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39558 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 9, c5 == 12, 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" 
+rule "#39562 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 == 4, c1 <= 13, c3 <= 11.5, c2 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 9, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39571 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39572 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 6, 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" 
+rule "#39573 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, c5 > 7.0, c1 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39578 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 7, c1 == 4, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39591 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 6, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39593 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39600 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 6, c1 == 3, 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" 
+rule "#39601 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 6, c1 == 2, 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" 
+rule "#39602 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 6, c1 == 1, 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" 
+rule "#39607 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 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39608 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 8, 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" 
+rule "#39609 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39615 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 6, c1 == 8, 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" 
+rule "#39622 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 6, c1 == 1, 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" 
+rule "#39624 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39625 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 5, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39631 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 4, c1 == 10, 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" 
+rule "#39633 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 4, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39634 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 4, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39635 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 4, c1 == 6, 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" 
+rule "#39636 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 4, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39637 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 4, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39641 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 3, c5 == 13, 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" 
+rule "#39644 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 3, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 3, c5 == 8, 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" 
+rule "#39650 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 3, c5 == 4, 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" 
+rule "#39659 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, c2 > 6.0, c3 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 3, c5 == 2, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39663 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 3, c5 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39672 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 12, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39673 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 12, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39686 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39687 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39688 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39689 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39691 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 1, c5 == 13, 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" 
+rule "#39693 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 1, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39696 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 1, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39697 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 1, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39698 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 1, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39700 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 1, c5 == 4, 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" 
+rule "#39702 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)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 1, c5 == 2, 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" 
+rule "#39703 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, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 8, c3 == 1, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39704 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39705 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 13, c3 == 12, 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" 
+rule "#39706 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 13, c3 == 11, 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" 
+rule "#39709 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 13, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39711 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 13, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39712 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 13, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39713 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 13, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39717 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 12, 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" 
+rule "#39721 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 9, 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" 
+rule "#39722 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39723 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 7, 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" 
+rule "#39726 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 4, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39731 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39735 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 4, c1 == 4, 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" 
+rule "#39739 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 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39741 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 12, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 11, c3 == 13, 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" 
+rule "#39744 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 11, c3 == 11, 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" 
+rule "#39749 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 11, c3 == 6, 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" 
+rule "#39751 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 11, c3 == 4, 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" 
+rule "#39760 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 13, c1 == 8, 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" 
+rule "#39766 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 == 3, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9054 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39771 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 9, 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" 
+rule "#39772 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, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39773 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 7, 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" 
+rule "#39776 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 4, 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" 
+rule "#39778 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 10, c3 == 2, 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" 
+rule "#39791 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 9, c1 == 2, 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" 
+rule "#39792 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 9, c1 == 1, 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" 
+rule "#39794 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 8, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 8, c3 == 11, 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" 
+rule "#39796 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, c3 > 3.0, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 8, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9064 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39806 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, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 8, c3 == 6, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39813 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 8, c3 == 5, 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" 
+rule "#39817 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 8, c3 == 1, 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" 
+rule "#39818 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 7, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9068 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#39819 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 7, c3 == 12, 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" 
+rule "#39821 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, c4 <= 12.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 7, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39823 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 7, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39824 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 7, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39826 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 7, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 7, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39831 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 6, c1 == 13, 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" 
+rule "#39833 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 6, c1 == 11, 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" 
+rule "#39835 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 <= 12.0, c5 > 7.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 6, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39837 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 6, c1 == 7, 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" 
+rule "#39841 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 6, c1 == 3, 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" 
+rule "#39842 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 6, c1 == 2, 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" 
+rule "#39844 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 > 7.5, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 12, 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" 
+rule "#39846 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 11, 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" 
+rule "#39847 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39849 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39850 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39852 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 5, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39863 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 5, c1 == 5, c3 == 2, 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" 
+rule "#39875 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 > 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39877 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 4, c1 == 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" 
+rule "#39882 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39884 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39885 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39890 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 9, c3 == 9, 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" 
+rule "#39891 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 9, c3 == 8, 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" 
+rule "#39901 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 6, 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" 
+rule "#39903 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 4, 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" 
+rule "#39905 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39906 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 3, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39908 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39910 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 2, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39913 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 2, c1 == 8, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39923 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 2, c1 == 8, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39925 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 2, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#39931 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 2, c1 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39943 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 2, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#39944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 13, 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" 
+rule "#39948 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)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 9, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39951 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 9, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39952 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 9, c3 == 9, 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" 
+rule "#39956 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 > 5.5, c4 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 9, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39961 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39963 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 7, c5 == 1, c1 == 2, 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" 
+rule "#39969 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 13, c5 == 13, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#39970 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 13, c5 == 13, c1 == 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" 
+rule "#39982 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 13, c5 == 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" 
+rule "#39986 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 13, c5 == 8, 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" 
+rule "#39990 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 13, c5 == 4, c1 == 13, 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" 
+rule "#39994 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 13, c5 == 4, c1 == 9, 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" 
+rule "#40005 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 13, c5 == 1, 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" 
+rule "#40007 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 12, 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" 
+rule "#40008 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 11, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40010 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 11, c1 == 11, 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" 
+rule "#40022 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 10, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40030 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 10, c1 == 4, 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" 
+rule "#40033 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 10, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40037 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 6, 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" 
+rule "#40038 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40040 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40042 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 12, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40045 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 11, c5 == 11, 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" 
+rule "#40047 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 11, c5 == 10, c1 == 12, 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" 
+rule "#40048 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 11, c5 == 10, c1 == 11, 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" 
+rule "#40059 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 <= 9.5, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40064 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 11, c5 == 4, 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" 
+rule "#40065 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 11, c5 == 3, 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" 
+rule "#40066 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 11, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40067 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 11, c5 == 1, 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" 
+rule "#40068 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 13, 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" 
+rule "#40071 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 10, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9124 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40078 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 10, c5 == 6, 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" 
+rule "#40082 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 10, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#40084 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40085 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40086 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40087 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 6, 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" 
+rule "#40088 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 5, 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" 
+rule "#40090 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 3, 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" 
+rule "#40097 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 1, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40099 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 10, c1 == 1, c5 == 6, 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" 
+rule "#40105 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 13, c1 == 13, 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" 
+rule "#40108 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 13, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40121 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 9, 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" 
+rule "#40122 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 8, 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" 
+rule "#40123 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 == 3, c2 <= 13, c5 > 1.0, c3 <= 5.5, c4 <= 3.0, c1 > 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40124 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#40126 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 9, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40135 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 12, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40136 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 12, c1 == 8, 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" 
+rule "#40148 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 7, 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" 
+rule "#40149 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 6, 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" 
+rule "#40153 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 2, 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" 
+rule "#40154 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, c3 <= 11.5, c2 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 8, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40157 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 7, c5 == 11, 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" 
+rule "#40158 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, c2 > 6.0, c3 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 7, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40159 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 7, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40162 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 7, c5 == 6, 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" 
+rule "#40164 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 7, c5 == 4, 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" 
+rule "#40167 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, c3 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 7, c5 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40170 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 12, 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" 
+rule "#40171 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 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 10, 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" 
+rule "#40174 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 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" 
+rule "#40179 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 3, c5 == 13, 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" 
+rule "#40184 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 3, c5 == 8, 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" 
+rule "#40190 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 5, c1 == 3, c5 == 2, 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" 
+rule "#40194 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 13, 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" 
+rule "#40195 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 12, 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" 
+rule "#40203 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 11, c5 == 6, 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" 
+rule "#40208 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 11, c5 == 1, 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" 
+rule "#40209 poker_hand = 5 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
 end
 
-rule "#9174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40210 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 9, 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" 
+rule "#40211 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 8, 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" 
+rule "#40212 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, c4 <= 7.5, c1 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40215 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 4, 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" 
+rule "#40216 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 4, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9180 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40219 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 3, c1 == 13, 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" 
+rule "#40222 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 3, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40223 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 3, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40224 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 3, c1 == 8, 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" 
+rule "#40225 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 3, c1 == 7, 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" 
+rule "#40227 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 3, c1 == 5, 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" 
+rule "#40228 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 3, c1 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9189 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40229 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 3, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40231 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 3, c1 == 1, 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" 
+rule "#40232 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#40233 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40234 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40235 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40236 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40237 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40239 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 6, 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" 
+rule "#40243 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#40244 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 2, c1 == 1, 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" 
+rule "#40245 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 1, c5 == 13, 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" 
+rule "#40255 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 1, c5 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40259 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 1, c5 == 11, c1 == 1, 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" 
+rule "#40261 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 1, c5 == 9, 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" 
+rule "#40263 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 1, c5 == 7, 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" 
+rule "#40264 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 1, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 1, c5 == 3, 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" 
+rule "#40268 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)
+		 examples.Poker(c4 == 2, c2 == 6, c3 == 1, c5 == 2, 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" 
+rule "#40271 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 12, 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" 
+rule "#40279 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 9, c1 == 8, 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" 
+rule "#40285 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 9, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9205 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40287 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 8, 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" 
+rule "#40288 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, c3 <= 10.0, c2 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 13, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9209 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40295 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 12, c1 == 13, 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" 
+rule "#40296 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 12, c1 == 12, 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" 
+rule "#40304 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 > 3.0, c2 > 2.5, c3 <= 5.0, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 12, c1 == 5, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#40313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 12, c1 == 5, c5 == 3, 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" 
+rule "#40317 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 12, c1 == 3, 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" 
+rule "#40319 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 12, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40321 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 11, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40325 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 11, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40326 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 11, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40327 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 11, c5 == 6, 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" 
+rule "#40328 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 11, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#40329 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 11, c5 == 4, 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" 
+rule "#40333 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 13, 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" 
+rule "#40335 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40337 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 9, 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" 
+rule "#40338 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40341 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 7, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40347 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 7, c5 == 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" 
+rule "#40352 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40353 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40356 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40357 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 10, c1 == 1, 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" 
+rule "#40358 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 9, c1 == 13, 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" 
+rule "#40360 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 9, c1 == 11, 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" 
+rule "#40365 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 9, c1 == 6, 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" 
+rule "#40373 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 8, c5 == 11, 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" 
+rule "#40376 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 8, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40377 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 8, c5 == 7, 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" 
+rule "#40381 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 8, c5 == 3, 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" 
+rule "#40383 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 8, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40386 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 13, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40392 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 13, c5 == 5, 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" 
+rule "#40397 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 12, 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" 
+rule "#40401 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 8, 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" 
+rule "#40406 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 5, c5 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9242 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40407 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 5, c5 == 10, 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" 
+rule "#40410 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 5, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#40419 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 7, c1 == 2, 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" 
+rule "#40423 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 6, c5 == 11, 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" 
+rule "#40426 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 6, c5 == 8, 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" 
+rule "#40427 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 6, c5 == 7, 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" 
+rule "#40428 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 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 6, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40429 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 6, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 6, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40435 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 5, s2 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40437 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 5, s2 == 1, 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" 
+rule "#40439 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 4, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40444 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 4, c5 == 7, 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" 
+rule "#40445 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 4, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40447 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 4, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40449 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 4, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 12, 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" 
+rule "#40453 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40454 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 10, 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" 
+rule "#40456 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 8, 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" 
+rule "#40457 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 7, 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" 
+rule "#40459 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 5, 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" 
+rule "#40460 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40466 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 1, c1 == 10, 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" 
+rule "#40473 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 3, c5 == 1, c1 == 3, 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" 
+rule "#40476 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 2, c1 == 13, 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" 
+rule "#40477 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 2, c1 == 12, 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" 
+rule "#40478 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 2, c1 == 11, 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" 
+rule "#40480 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 2, c1 == 9, 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" 
+rule "#40483 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 2, c1 == 6, 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" 
+rule "#40485 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 2, c1 == 4, 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" 
+rule "#40486 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 2, c1 == 3, 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" 
+rule "#40488 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 2, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#9274 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40490 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)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 1, c5 == 12, 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" 
+rule "#40493 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, c5 > 9.0, c3 <= 6.0, c4 > 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 1, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40496 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 1, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40498 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 1, c5 == 4, 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" 
+rule "#40500 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, c5 > 9.0, c3 <= 6.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 5, c3 == 1, c5 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9281 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40506 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, c5 > 9.0, c3 > 6.0, c4 > 3, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 13, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 13, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40509 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 13, c1 == 6, 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" 
+rule "#40510 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, c4 <= 3.5, c3 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 13, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40511 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 13, c1 == 4, 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" 
+rule "#40513 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 13, c1 == 2, 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" 
+rule "#40514 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 13, c1 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9287 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40516 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 12, 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" 
+rule "#40517 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, c4 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40518 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 10, 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" 
+rule "#40525 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 9, c5 == 7, 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" 
+rule "#40528 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, c5 > 4.0, c4 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 9, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9293 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40532 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40533 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40538 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40539 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 12, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40540 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 11, c1 == 13, 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" 
+rule "#40541 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 11, c1 == 12, 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" 
+rule "#40542 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 11, c1 == 11, 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" 
+rule "#40543 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, c4 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 11, c1 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9298 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40549 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 11, c1 == 4, 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" 
+rule "#40551 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 11, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40552 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 11, c1 == 1, 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" 
+rule "#40557 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 13, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 13, c5 == 4, 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" 
+rule "#40568 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40570 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 8, 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" 
+rule "#40572 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 7, c5 == 12, 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" 
+rule "#40574 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 7, c5 == 10, 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" 
+rule "#40579 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 7, c5 == 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" 
+rule "#40584 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 6, 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" 
+rule "#40585 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 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" 
+rule "#40587 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 3, 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" 
+rule "#40590 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 2, c5 == 11, 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" 
+rule "#40591 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 == 2, c4 > 2.0, c5 <= 13, c1 > 2.5, c2 > 11.5, c3 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 2, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#40601 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 10, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40603 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40604 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40605 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40610 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 8, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40618 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 8, c1 == 2, 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" 
+rule "#40621 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, c5 <= 13, c1 > 2.5, c2 > 11.5, c3 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40623 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#40625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 2, 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" 
+rule "#40629 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 1, c1 == 10, 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" 
+rule "#40638 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 9, c5 == 1, c1 == 1, 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" 
+rule "#40640 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 8, c1 == 12, 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" 
+rule "#40644 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 8, c1 == 8, 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" 
+rule "#40645 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 8, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40646 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 8, c1 == 6, 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" 
+rule "#40652 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 8, c1 == 3, c5 == 10, 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" 
+rule "#40658 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 8, c1 == 3, c5 == 4, 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" 
+rule "#40665 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 12, 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" 
+rule "#40666 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 11, 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" 
+rule "#40672 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 9, c1 == 9, 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" 
+rule "#40675 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 9, c1 == 6, 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" 
+rule "#40676 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 <= 7.5, c3 > 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 7, 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" 
+rule "#40688 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 <= 7.5, c3 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 5, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40695 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 5, c1 == 2, 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" 
+rule "#40697 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 == 4, c2 <= 12.0, c5 > 1.0, c4 <= 8.0, c1 > 7.5, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 7, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#40704 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40705 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40706 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 6, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40709 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 6, c1 == 7, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 6, c1 == 7, c5 == 7, 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" 
+rule "#40715 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 6, c1 == 7, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40721 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 6, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40724 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 6, c1 == 2, 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" 
+rule "#40727 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 12, c1 == 13, 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" 
+rule "#40735 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 12, c1 == 5, 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" 
+rule "#40742 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 9, 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" 
+rule "#40744 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40745 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40749 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#40750 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 5, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 13, 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" 
+rule "#40753 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 11, 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" 
+rule "#40767 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 7, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40768 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 7, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#40770 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40772 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#40775 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 4, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 3, s3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 3, s3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40788 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 3, s3 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40791 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 3, s3 == 1, c1 == 1, 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" 
+rule "#40793 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 2, c5 == 12, 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" 
+rule "#40801 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 2, c5 == 4, 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" 
+rule "#40803 poker_hand = 3 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 2, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#40805 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 1, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40806 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 1, c1 == 12, 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" 
+rule "#40816 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 1, c1 == 11, c5 == 4, 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" 
+rule "#40823 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 1, c1 == 7, 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" 
+rule "#40824 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 1, c1 == 6, 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" 
+rule "#40827 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)
+		 examples.Poker(c4 == 2, c2 == 4, c3 == 1, c1 == 3, 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" 
+rule "#40831 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 12, 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" 
+rule "#40832 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 11, 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" 
+rule "#40833 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 10, 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" 
+rule "#40835 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40836 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 7, c5 == 13, 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" 
+rule "#40844 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 7, c5 == 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" 
+rule "#40846 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 7, c5 == 3, 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" 
+rule "#40849 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40850 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 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" 
+rule "#40851 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 4, 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" 
+rule "#40852 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 3, 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" 
+rule "#40853 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 13, c3 == 2, 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" 
+rule "#40857 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 11, s3 == 4, c3 == 12, 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" 
+rule "#40858 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 11, s3 == 4, c3 == 11, 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" 
+rule "#40859 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 11, s3 == 4, c3 == 10, 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" 
+rule "#40870 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 11, s3 == 2, 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" 
+rule "#40873 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 <= 11.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 10, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (7)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9383 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40875 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 10, c3 == 10, 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" 
+rule "#40876 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 10, c3 == 9, 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" 
+rule "#40877 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, c4 <= 11.0, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 10, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9387 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40880 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, c4 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 10, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 10, c3 == 3, 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" 
+rule "#40884 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 10, c3 == 1, 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" 
+rule "#40887 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 11, 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" 
+rule "#40888 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 <= 5.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40889 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#40890 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40891 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40892 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40894 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 3, 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" 
+rule "#40897 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 9, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40900 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40901 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 7, c3 == 2, 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" 
+rule "#40916 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 7, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40918 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 6, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40919 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 6, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40925 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 6, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40927 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 6, c3 == 3, 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" 
+rule "#40934 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 5, c3 == 9, 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" 
+rule "#40941 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 5, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40944 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 3, 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" 
+rule "#40945 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 8, c5 == 2, 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" 
+rule "#40952 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, c5 > 1.5, c2 <= 11.0, c4 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 7, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40954 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 7, c5 == 6, 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" 
+rule "#40966 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, c5 > 1.5, c2 > 11.0, c4 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 7, c5 == 1, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40967 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 7, c5 == 1, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 7, c5 == 1, c3 == 1, 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" 
+rule "#40972 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 13, 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" 
+rule "#40973 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, c2 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9408 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40974 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9409 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40977 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 8, 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" 
+rule "#40980 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, c5 <= 11.0, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9412 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40985 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 7, c3 == 6, 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" 
+rule "#40991 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#40993 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 4, 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" 
+rule "#40994 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 3, 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" 
+rule "#40995 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 2, 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" 
+rule "#40996 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 6, c5 == 1, 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" 
+rule "#40997 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9424 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#40998 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40999 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 11, 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" 
+rule "#41001 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 9, 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" 
+rule "#41003 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41005 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 5, 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" 
+rule "#41006 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 4, 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" 
+rule "#41008 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 5, c3 == 2, 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" 
+rule "#41012 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 4, c3 == 11, 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" 
+rule "#41015 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 4, c3 == 8, 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" 
+rule "#41021 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 4, c3 == 2, 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" 
+rule "#41022 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 4, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41023 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 3, c3 == 13, 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" 
+rule "#41026 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 3, c3 == 10, 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" 
+rule "#41035 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 == 2, c3 > 2.0, c1 <= 12.5, c2 <= 10.0, c4 <= 6.0, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 3, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#9444 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41038 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 == 2, c3 > 2.0, c1 <= 12.5, c2 > 10.0, c4 > 6.5, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 2, c5 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#9445 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41040 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 2, c5 == 12, c3 == 10, 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" 
+rule "#41052 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 2, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41054 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 2, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41055 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41058 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 2, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41059 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 2, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#41065 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 1, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41069 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 1, c3 == 7, c5 == 11, 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" 
+rule "#41078 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 1, c3 == 7, c5 == 2, 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" 
+rule "#41080 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)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 1, c3 == 6, 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" 
+rule "#41081 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 > 2.5, c1 > 3.0, c3 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 1, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41082 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 1, c3 == 4, 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" 
+rule "#41084 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 == 1, c4 <= 4.5, c2 > 2.5, c1 > 3.0, c3 <= 11, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 3, c1 == 1, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#41087 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 13, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41090 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41092 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 13, c1 == 7, c3 == 13, 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" 
+rule "#41101 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)
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 13, c1 == 7, c3 == 4, 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" 
+rule "#41106 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)
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 13, c1 == 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" 
+rule "#41107 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 > 4.5, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 13, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41108 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 13, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41109 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#41110 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 13, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41111 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41113 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41116 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41118 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41119 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41121 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 4, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41127 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 4, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41129 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41130 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 12, c1 == 4, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41136 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41137 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41140 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41144 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 7, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41146 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41156 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41159 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 11, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#41162 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 10, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41163 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 10, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41165 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 10, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41166 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 10, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41172 poker_hand = 7 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 10, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (7)");
+end
+
+rule "#41173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 10, c3 == 1, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41184 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 10, c3 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#41190 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 9, c1 == 13, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41191 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 9, c1 == 13, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41201 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 9, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41203 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 9, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41206 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 9, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41213 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 8, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41214 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 8, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 8, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41218 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 8, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41224 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 7, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41228 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 7, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41230 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41233 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41234 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 7, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41235 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 7, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#41236 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 7, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41237 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41238 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 6, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41240 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41243 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 6, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41244 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 6, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41247 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 6, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41249 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 6, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41253 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 5, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41257 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 5, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#41260 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 5, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41262 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 5, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41263 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 4, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41266 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41267 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 4, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41272 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41281 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 3, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41282 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 3, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41284 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41285 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 3, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41287 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 3, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#41288 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 3, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 1, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41292 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41294 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 1, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41296 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 1, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41300 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 1, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41302 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 2, c5 == 1, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41305 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 11, 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" 
+rule "#41306 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 10, 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" 
+rule "#41307 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 9, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41313 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 9, c5 == 7, 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" 
+rule "#41322 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 6, 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" 
+rule "#41323 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41325 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 13, c3 == 3, 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" 
+rule "#41329 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 13, c5 == 12, 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" 
+rule "#41330 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 13, c5 == 11, 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" 
+rule "#41333 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 13, c5 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9472 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41334 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 13, c5 == 7, 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" 
+rule "#41341 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 12, 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" 
+rule "#41345 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, c1 > 2.0, c2 <= 8.0, c4 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9477 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41346 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, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9480 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41349 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41351 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 12, c3 == 2, 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" 
+rule "#41353 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 11, c5 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41356 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 11, c5 == 13, c3 == 10, 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" 
+rule "#41359 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 11, c5 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41366 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 11, c5 == 12, 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" 
+rule "#41368 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, c1 <= 10.5, c2 > 5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 11, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9486 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41369 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, c1 > 10.5, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 11, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41370 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 11, c5 == 8, 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" 
+rule "#41373 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 11, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41380 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 11, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41381 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 11, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41388 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 11, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41392 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 11, c5 == 1, 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" 
+rule "#41395 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 <= 9.5, c3 <= 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41396 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41397 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 6, 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" 
+rule "#41398 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 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" 
+rule "#41402 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 10, c3 == 1, 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" 
+rule "#41403 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41404 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 12, 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" 
+rule "#41407 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 9, 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" 
+rule "#41412 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 4, 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" 
+rule "#41413 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 3, 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" 
+rule "#41415 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 9, c5 == 1, 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" 
+rule "#41416 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 13, 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" 
+rule "#41417 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41420 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 9, 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" 
+rule "#41426 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 > 1.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 7, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 7, c3 == 7, 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" 
+rule "#41437 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 6, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 6, c3 == 2, 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" 
+rule "#41450 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 8, c5 == 3, 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" 
+rule "#41454 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 12, 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" 
+rule "#41458 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 > 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 11, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 11, c5 == 7, 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" 
+rule "#41462 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 <= 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 11, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9520 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41467 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 11, c5 == 1, 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" 
+rule "#41470 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, c4 > 11.0, c3 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 10, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41471 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 10, c5 == 10, 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" 
+rule "#41482 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 8, 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" 
+rule "#41483 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41484 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 7, c3 == 6, 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" 
+rule "#41496 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, c1 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 13, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9529 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41502 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 13, c5 == 1, 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" 
+rule "#41506 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41509 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41512 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41514 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 6, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41515 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 5, c3 == 13, 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" 
+rule "#41516 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 5, c3 == 12, 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" 
+rule "#41517 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 5, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41518 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 5, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41522 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 5, c3 == 6, 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" 
+rule "#41525 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 5, c3 == 3, 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" 
+rule "#41526 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 5, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41532 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 4, c3 == 9, 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" 
+rule "#41534 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 4, c3 == 7, 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" 
+rule "#41536 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 4, c3 == 5, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41544 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 4, c3 == 5, c5 == 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" 
+rule "#41552 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 4, c3 == 1, 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" 
+rule "#41554 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 12, 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" 
+rule "#41559 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 10, c5 == 10, 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" 
+rule "#41565 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 10, c5 == 4, 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" 
+rule "#41576 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 8, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41577 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 8, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41585 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 6, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41591 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 6, c5 == 6, 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" 
+rule "#41601 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 3, c3 == 1, 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" 
+rule "#41604 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 2, c3 == 11, 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" 
+rule "#41609 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)
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 2, c3 == 9, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41618 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 2, c3 == 9, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 2, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41620 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 2, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41624 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 2, c2 == 1, c1 == 2, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41629 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 13, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41631 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41632 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 13, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41637 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 13, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41639 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41644 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 12, c1 == 10, 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" 
+rule "#41648 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 12, c1 == 6, 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" 
+rule "#41651 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 12, c1 == 3, 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" 
+rule "#41655 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 > 2.0, c2 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 12, c1 == 2, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41664 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 12, c1 == 2, c5 == 1, 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" 
+rule "#41670 poker_hand = 4 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 12, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#41671 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 12, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41680 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 11, 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" 
+rule "#41681 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41692 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 9, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41694 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 9, c1 == 1, 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" 
+rule "#41695 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 8, 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" 
+rule "#41696 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 7, 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" 
+rule "#41698 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41699 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 11, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41704 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 10, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41707 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 10, c1 == 9, 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" 
+rule "#41709 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 10, c1 == 7, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41714 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 10, c1 == 7, c5 == 8, 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" 
+rule "#41725 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 10, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41736 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 10, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41743 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 10, c5 == 1, 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" 
+rule "#41745 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, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41747 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41755 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 5, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41760 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 5, c5 == 1, 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" 
+rule "#41761 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, c5 > 4.0, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41762 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 3, 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" 
+rule "#41764 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 9, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41768 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 10, 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" 
+rule "#41770 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 8, 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" 
+rule "#41774 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, c2 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41778 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 3, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41782 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 3, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41785 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 3, c5 == 3, 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" 
+rule "#41789 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 8, c1 == 1, 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" 
+rule "#41790 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 7, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41791 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 7, c5 == 12, 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" 
+rule "#41792 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 <= 7.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 7, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41797 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 7, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41799 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 7, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 6, c5 == 13, 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" 
+rule "#41805 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 6, c5 == 11, 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" 
+rule "#41809 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 6, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41811 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 6, c5 == 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" 
+rule "#41822 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 6, c5 == 4, c1 == 3, 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" 
+rule "#41824 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 6, c5 == 4, c1 == 1, 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" 
+rule "#41826 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 6, c5 == 2, 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" 
+rule "#41829 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 5, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41830 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 5, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41838 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 5, c5 == 8, c1 == 8, 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" 
+rule "#41839 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 5, c5 == 8, c1 == 7, 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" 
+rule "#41846 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 5, c5 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9593 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41849 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 5, c5 == 4, 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" 
+rule "#41850 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 5, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41857 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41858 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 4, 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" 
+rule "#41865 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, c4 > 3.0, c2 > 1.0, c3 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 2, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41871 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 4, c1 == 2, c5 == 4, 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" 
+rule "#41879 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 3, c1 == 12, 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" 
+rule "#41881 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 3, c1 == 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" 
+rule "#41885 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 3, c1 == 6, 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" 
+rule "#41886 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 3, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41891 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 13, 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" 
+rule "#41893 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 11, 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" 
+rule "#41894 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 9, 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" 
+rule "#41896 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 8, 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" 
+rule "#41899 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41901 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 3, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41904 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 3, c1 == 10, 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" 
+rule "#41915 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)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 2, c5 == 1, 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" 
+rule "#41916 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 == 2, c2 > 1.5, c1 > 4.0, c4 > 8.0, c3 > 3.5, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41917 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 12, 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" 
+rule "#41920 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41925 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 8, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41926 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 8, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41928 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 8, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41930 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 8, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41934 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41935 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41940 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 13, c3 == 1, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#41941 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41943 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 13, c3 == 11, 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" 
+rule "#41947 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41950 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 13, c3 == 4, 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" 
+rule "#41951 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 13, c3 == 3, 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" 
+rule "#41954 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 12, c3 == 13, 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" 
+rule "#41955 poker_hand = 3 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 12, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
 end
 
-rule "#9625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#41956 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 12, c3 == 11, 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" 
+rule "#41959 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 12, c3 == 8, 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" 
+rule "#41962 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 12, c3 == 5, 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" 
+rule "#41968 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 11, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#41973 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 11, c5 == 7, 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" 
+rule "#41974 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 11, c5 == 6, 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" 
+rule "#41978 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 11, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41980 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 10, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#41982 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 10, c5 == 11, 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" 
+rule "#41986 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 10, c5 == 7, 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" 
+rule "#41987 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 10, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41990 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 10, c5 == 3, 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" 
+rule "#41993 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 9, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#41994 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 9, c3 == 12, 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" 
+rule "#41995 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 9, c3 == 11, 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" 
+rule "#41996 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 9, c3 == 10, 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" 
+rule "#42003 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 9, c3 == 3, 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" 
+rule "#42004 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 9, c3 == 2, 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" 
+rule "#42005 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 9, c3 == 1, 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" 
+rule "#42007 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, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9662 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42008 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 == 4, c3 > 4.5, c1 > 1.5, c5 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42009 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42010 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 7, 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" 
+rule "#42013 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42014 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 > 12.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42015 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42017 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 8, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42022 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 7, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42023 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 7, c3 == 9, 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" 
+rule "#42026 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 7, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42027 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 7, c3 == 5, 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" 
+rule "#42028 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 7, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42029 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 7, c3 == 3, 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" 
+rule "#42032 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 13, 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" 
+rule "#42036 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 9, 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" 
+rule "#42039 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 7, c5 == 12, 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" 
+rule "#42043 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 7, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42051 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 6, 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" 
+rule "#42053 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 4, 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" 
+rule "#42054 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42056 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 6, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42063 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 5, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42067 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 5, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42068 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 5, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42069 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 5, c3 == 1, 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" 
+rule "#42070 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, c4 <= 6.5, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42074 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 9, 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" 
+rule "#42075 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 8, c5 == 13, 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" 
+rule "#42080 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 8, c5 == 8, 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" 
+rule "#42088 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 7, 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" 
+rule "#42089 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42090 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42093 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 4, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42095 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 3, c5 == 13, 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" 
+rule "#42097 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 3, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42098 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 3, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42101 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 3, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42108 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 2, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42109 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 2, c3 == 12, 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" 
+rule "#42111 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)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 2, c3 == 10, 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" 
+rule "#42113 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, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 2, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42115 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 2, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42117 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 2, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42125 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 1, c3 == 9, 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" 
+rule "#42127 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 1, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42130 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 1, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#42132 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 12, c1 == 1, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42135 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 13, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42136 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 13, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42137 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 13, c1 == 10, 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" 
+rule "#42138 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 13, c1 == 9, 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" 
+rule "#42139 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 13, c1 == 8, 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" 
+rule "#42143 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 13, c1 == 4, 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" 
+rule "#42144 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 13, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42147 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42148 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 12, 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" 
+rule "#42150 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 10, 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" 
+rule "#42151 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9702 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42153 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, c3 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42154 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42155 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42156 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42158 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42159 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 12, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42160 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 11, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42162 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 11, c1 == 11, 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" 
+rule "#42164 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 11, c1 == 9, 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" 
+rule "#42165 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 11, c1 == 8, 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" 
+rule "#42166 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 11, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 11, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42170 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 11, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42172 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42173 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 13, 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" 
+rule "#42174 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 12, 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" 
+rule "#42175 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 11, 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" 
+rule "#42176 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42178 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 8, 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" 
+rule "#42179 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 == 2, c1 <= 10.0, c3 > 2.5, c2 <= 2.5, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42181 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 10, c5 == 4, 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" 
+rule "#42188 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 9, c1 == 11, 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" 
+rule "#42191 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 9, c1 == 8, 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" 
+rule "#42194 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 9, c1 == 5, 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" 
+rule "#42195 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 9, c1 == 4, 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" 
+rule "#42196 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 9, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42198 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 9, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42202 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 8, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42204 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 8, c1 == 8, 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" 
+rule "#42208 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 8, c1 == 5, c5 == 12, 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" 
+rule "#42214 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 > 3.5, c3 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 8, c1 == 5, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42215 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 8, c1 == 5, c5 == 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" 
+rule "#42220 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 8, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42222 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 8, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42224 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42225 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42226 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 11, 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" 
+rule "#42227 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42231 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42232 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 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" 
+rule "#42240 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 4, c5 == 6, 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" 
+rule "#42242 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 4, c5 == 4, 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" 
+rule "#42247 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 7, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42249 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42250 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42251 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 11, 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" 
+rule "#42252 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, c3 > 1.0, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9741 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42254 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, c3 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42261 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42268 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42271 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42272 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42273 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 6, c5 == 1, 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" 
+rule "#42274 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 5, c1 == 13, 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" 
+rule "#42276 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 5, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9744 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42280 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 5, c1 == 7, 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" 
+rule "#42281 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 5, c1 == 6, 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" 
+rule "#42284 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 > 1.5, c3 > 1.0, c4 > 4.0, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 5, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42286 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 5, c1 == 1, 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" 
+rule "#42292 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 > 4.5, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 13, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42296 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 13, c5 == 4, 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" 
+rule "#42297 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 13, c5 == 3, 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" 
+rule "#42302 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42304 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42307 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 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" 
+rule "#42311 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 4, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42317 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 4, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#42321 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 3, 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" 
+rule "#42326 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 2, c5 == 9, 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" 
+rule "#42329 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 2, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42333 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 4, c1 == 2, c5 == 2, 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" 
+rule "#42337 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 12, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42339 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 12, c5 == 11, 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" 
+rule "#42340 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 12, c5 == 10, 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" 
+rule "#42348 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, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 12, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42350 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 11, 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" 
+rule "#42351 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 10, 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" 
+rule "#42353 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 9, c5 == 12, 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" 
+rule "#42362 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 9, c5 == 3, 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" 
+rule "#42366 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 7, 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" 
+rule "#42367 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42368 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42369 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42371 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 3, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42373 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 12, 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" 
+rule "#42379 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42382 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 11, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42387 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 11, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42389 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 9, 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" 
+rule "#42390 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 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42392 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42395 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42396 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 2, c5 == 2, 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" 
+rule "#42404 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 == 3, c1 > 1.5, c2 > 3.0, c3 <= 13, c4 <= 4.5, c5 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 1, c5 == 10, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42406 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 1, c5 == 10, c1 == 8, 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" 
+rule "#42414 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 1, c5 == 9, 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" 
+rule "#42415 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 1, c5 == 8, 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" 
+rule "#42417 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 1, c5 == 6, 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" 
+rule "#42419 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)
+		 examples.Poker(c4 == 1, c2 == 11, c3 == 1, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42423 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42424 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 12, 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" 
+rule "#42425 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 == 2, c4 > 3.5, c1 > 3.5, c2 > 7.0, c3 > 9.5, c5 > 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#42428 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42430 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 6, c1 == 13, 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" 
+rule "#42431 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 6, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42444 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 4, 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" 
+rule "#42445 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 3, 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" 
+rule "#42447 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, c1 > 2.5, c2 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 13, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42449 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 12, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42450 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 12, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42451 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 12, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 12, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42453 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 12, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42454 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 12, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42457 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 12, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42462 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 11, c1 == 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" 
+rule "#42466 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 11, c1 == 8, 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" 
+rule "#42469 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42472 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 11, c1 == 3, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42473 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 11, c1 == 3, c3 == 11, 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" 
+rule "#42479 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 11, c1 == 3, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42486 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 10, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42492 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 10, c1 == 7, 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" 
+rule "#42497 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 10, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42499 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42500 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 12, 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" 
+rule "#42501 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 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42503 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 9, 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" 
+rule "#42506 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 6, 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" 
+rule "#42507 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42512 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 4, c1 == 9, 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" 
+rule "#42514 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 4, c1 == 7, 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" 
+rule "#42517 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 4, c1 == 4, 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" 
+rule "#42526 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42528 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 9, c3 == 1, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42536 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 8, c1 == 13, 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" 
+rule "#42542 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, c3 <= 3.5, c1 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 8, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42544 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 8, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42548 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 8, c1 == 1, 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" 
+rule "#42549 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, c3 > 3.5, c1 <= 8.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42551 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 12, c1 == 12, 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" 
+rule "#42559 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, c3 > 3.5, c1 > 8.0, c4 <= 9.0, c5 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 12, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 12, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42561 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 12, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42564 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 10, 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" 
+rule "#42566 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 9, c1 == 12, 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" 
+rule "#42568 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 9, c1 == 10, 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" 
+rule "#42579 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42582 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 4, 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" 
+rule "#42583 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42584 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42585 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 7, c3 == 1, 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" 
+rule "#42586 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 6, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42587 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 6, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42590 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42591 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 6, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42594 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 6, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42598 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 6, c1 == 1, 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" 
+rule "#42599 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 13, c3 == 13, 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" 
+rule "#42609 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 13, c3 == 3, 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" 
+rule "#42616 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 9, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42617 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 9, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#42621 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 9, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42622 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 9, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42635 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 8, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42638 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42640 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 8, c3 == 1, 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" 
+rule "#42641 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42643 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 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" 
+rule "#42645 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 5, c1 == 3, 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" 
+rule "#42648 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 13, 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" 
+rule "#42649 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 12, 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" 
+rule "#42652 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 == 1, c1 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42660 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 11, c1 == 3, 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" 
+rule "#42665 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 8, 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" 
+rule "#42668 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42669 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42670 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 4, c3 == 3, 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" 
+rule "#42674 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 3, c1 == 12, 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" 
+rule "#42675 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 3, c1 == 11, 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" 
+rule "#42676 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 3, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 3, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42678 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 3, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42681 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42683 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 3, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42685 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 3, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#42686 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 2, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42688 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 2, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42689 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 2, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#42693 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 2, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42694 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 2, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42696 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42697 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42698 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 2, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42700 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 1, c1 == 12, 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" 
+rule "#42702 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, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 1, c1 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42704 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 1, c1 == 8, 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" 
+rule "#42705 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)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 1, c1 == 7, 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" 
+rule "#42707 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, c2 <= 13, c4 > 3.0, c1 > 11.0, c3 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 1, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42708 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 10, c5 == 1, c1 == 4, 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" 
+rule "#42720 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 == 3, c5 > 2.0, c2 <= 13, c4 > 3.0, c1 > 11.0, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 11, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42726 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 11, c5 == 1, 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" 
+rule "#42729 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 8, 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" 
+rule "#42730 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 7, 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" 
+rule "#42733 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 4, 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" 
+rule "#42734 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 == 3, c5 <= 2.0, c1 <= 12, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9864 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42735 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42743 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 1, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42748 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 13, c3 == 1, c5 == 1, 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" 
+rule "#42751 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, c2 <= 12.5, c1 <= 9.0, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42752 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 10, 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" 
+rule "#42753 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 9, 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" 
+rule "#42757 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 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 7, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42761 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 7, c3 == 7, 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" 
+rule "#42768 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 6, 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" 
+rule "#42771 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42772 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 12, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42774 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42775 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 11, 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" 
+rule "#42777 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 9, 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" 
+rule "#42785 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 7, c5 == 8, 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" 
+rule "#42786 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 <= 8.0, c2 <= 7, c3 > 11, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 7, c5 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42797 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 11, c3 == 2, 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" 
+rule "#42799 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42802 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 10, 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" 
+rule "#42806 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 6, 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" 
+rule "#42807 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 5, 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" 
+rule "#42809 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9889 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42812 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 2, c3 == 11, 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" 
+rule "#42813 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, c3 <= 5.5, c1 <= 13, c2 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 2, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9892 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42821 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, c1 <= 3.5, c3 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 10, c5 == 2, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 9, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42826 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 9, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42828 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 9, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#42830 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 9, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#42833 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 9, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 9, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42836 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 9, c3 == 1, 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" 
+rule "#42840 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, c1 <= 3.5, c3 <= 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 8, c5 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42844 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 8, c5 == 6, 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" 
+rule "#42845 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 8, c5 == 5, 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" 
+rule "#42846 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 8, c5 == 4, 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" 
+rule "#42847 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 8, c5 == 3, 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" 
+rule "#42851 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 == 3, c2 > 2.5, c4 <= 10.0, c1 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 7, c5 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9906 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42853 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 7, c5 == 10, 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" 
+rule "#42854 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 7, c5 == 9, 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" 
+rule "#42857 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 7, c5 == 6, 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" 
+rule "#42859 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 7, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42863 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42865 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42866 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42867 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 9, 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" 
+rule "#42869 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42870 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 6, 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" 
+rule "#42872 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 4, 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" 
+rule "#42874 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 6, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9919 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42876 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 5, c3 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#9920 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42884 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 5, c3 == 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" 
+rule "#42885 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 5, c3 == 4, 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" 
+rule "#42889 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 <= 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 5, c3 == 2, c5 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42898 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 5, c3 == 2, c5 == 2, 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" 
+rule "#42902 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 4, c5 == 12, 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" 
+rule "#42909 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 4, c5 == 5, 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" 
+rule "#42910 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 4, c5 == 4, 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" 
+rule "#42911 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 4, c5 == 3, 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" 
+rule "#42914 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 3, c3 == 13, c5 == 13, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#9933 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#42915 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 3, c3 == 13, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42927 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 3, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42930 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 3, c3 == 9, 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" 
+rule "#42931 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42932 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 3, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42939 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 2, c3 == 13, 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" 
+rule "#42940 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 2, c3 == 12, 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" 
+rule "#42942 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 2, c3 == 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" 
+rule "#42946 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 > 11.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 2, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42948 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 2, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42949 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 2, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42951 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 2, c3 == 1, 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" 
+rule "#42952 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 1, c3 == 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" 
+rule "#42955 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 1, c3 == 10, 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" 
+rule "#42958 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 1, c3 == 7, 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" 
+rule "#42962 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 1, c3 == 6, c5 == 10, 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" 
+rule "#42966 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 1, c3 == 6, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42972 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 1, c3 == 5, 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" 
+rule "#42973 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)
+		 examples.Poker(c4 == 1, c2 == 9, c1 == 1, c3 == 4, 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" 
+rule "#42978 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 13, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42979 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 13, c3 == 11, 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" 
+rule "#42982 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 13, c3 == 8, 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" 
+rule "#42983 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#42986 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 13, c3 == 4, 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" 
+rule "#42987 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 13, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42988 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 13, c3 == 2, 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" 
+rule "#42989 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 13, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#42990 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 12, c3 == 13, 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" 
+rule "#42994 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 12, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42996 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 12, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43001 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 12, c3 == 2, 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" 
+rule "#43007 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 13, c5 == 9, 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" 
+rule "#43015 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 13, c5 == 1, 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" 
+rule "#43018 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 10, 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" 
+rule "#43023 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 9, c5 == 9, 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" 
+rule "#43025 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 9, c5 == 7, 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" 
+rule "#43032 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 8, 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" 
+rule "#43033 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, c3 > 1.5, c1 <= 11.5, c5 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43038 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 2, 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" 
+rule "#43039 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, c1 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 11, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43042 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 12, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43043 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 12, c3 == 11, 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" 
+rule "#43056 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43057 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43061 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 6, c3 == 11, 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" 
+rule "#43062 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 6, c3 == 10, 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" 
+rule "#43064 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 6, c3 == 8, 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" 
+rule "#43072 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 == 3, c3 <= 8.0, c1 > 2.0, c2 <= 9.5, c4 <= 11.5, c5 <= 4.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43076 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 10, c5 == 1, 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" 
+rule "#43080 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 == 3, c3 <= 8.0, c1 > 2.0, c2 > 9.5, c4 <= 10.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 9, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43082 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 9, c3 == 8, 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" 
+rule "#43083 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 == 3, c3 <= 8.0, c1 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 9, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43085 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 9, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43087 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 9, c3 == 3, 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" 
+rule "#43088 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 9, c3 == 2, 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" 
+rule "#43090 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 8, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43092 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 8, c3 == 11, 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" 
+rule "#43095 poker_hand = 3 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 8, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#43099 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 8, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43100 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43103 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43104 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 12, 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" 
+rule "#43106 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 10, 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" 
+rule "#43107 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 9, 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" 
+rule "#43113 poker_hand = 3 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 8, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#43119 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 8, c5 == 2, 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" 
+rule "#43123 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43128 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 4, c5 == 9, 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" 
+rule "#43136 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 4, c5 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43137 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 7, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43142 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 6, c3 == 11, 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" 
+rule "#43144 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 6, c3 == 9, 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" 
+rule "#43145 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 6, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43147 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 6, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43148 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 6, c3 == 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" 
+rule "#43152 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 6, c3 == 1, 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" 
+rule "#43153 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 5, c5 == 13, 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" 
+rule "#43156 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 5, c5 == 10, 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" 
+rule "#43157 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 == 3, c2 > 1.0, c1 <= 13, c3 <= 9.0, c4 > 1.0, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 5, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43164 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 5, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43168 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43169 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43174 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 4, c3 == 9, c5 == 9, 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" 
+rule "#43177 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 == 3, c2 > 1.0, c1 <= 13, c3 > 9.0, c4 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 4, c3 == 9, c5 == 6, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43191 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 == 3, c2 > 1.0, c1 <= 13, c3 > 9.0, c4 > 2.5, c5 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43197 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 11, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43198 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 11, c3 == 8, 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" 
+rule "#43203 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 11, c3 == 3, 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" 
+rule "#43207 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 9, 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" 
+rule "#43208 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 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43212 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 4, 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" 
+rule "#43213 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 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#10026 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43214 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 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 3, c5 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43218 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 2, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43222 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 2, c3 == 7, 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" 
+rule "#43225 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 2, c3 == 4, 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" 
+rule "#43226 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, c5 <= 10.0, c2 > 8.0, c3 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 2, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43230 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 12, 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" 
+rule "#43231 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 11, 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" 
+rule "#43238 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 4, 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" 
+rule "#43240 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)
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 3, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43249 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 3, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 8, c1 == 1, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43254 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 10, 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" 
+rule "#43258 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 9, 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" 
+rule "#43259 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 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10040 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43260 poker_hand = 3 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#43269 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 5, c1 == 6, 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" 
+rule "#43270 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 5, c1 == 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" 
+rule "#43272 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 > 4.0, c2 <= 8.0, c4 <= 5.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 5, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10048 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43273 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 5, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43274 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 13, c3 == 5, c1 == 1, 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" 
+rule "#43280 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43292 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 10, c3 == 3, 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" 
+rule "#43294 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 10, c3 == 1, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#10051 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43295 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, c1 <= 10.0, c2 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10053 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43296 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, c1 > 10.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43298 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 6, 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" 
+rule "#43299 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 5, 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" 
+rule "#43301 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 3, 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" 
+rule "#43302 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, c5 > 12, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 12, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43304 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 13, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43311 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 13, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43312 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 13, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43319 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43324 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43326 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43327 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 11, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43332 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 12, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43342 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 12, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43344 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43352 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43356 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 1, c3 == 10, 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" 
+rule "#43361 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 10, c1 == 1, c3 == 5, 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" 
+rule "#43368 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, c1 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 9, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43370 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 9, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43371 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 9, c1 == 8, 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" 
+rule "#43380 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 8, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43381 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 8, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43382 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 8, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43384 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 8, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 8, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43387 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 8, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43391 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 8, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43394 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 7, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43397 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 7, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43400 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 7, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#43401 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 7, c3 == 4, 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" 
+rule "#43405 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, c2 <= 9.5, c1 > 7.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 7, c3 == 2, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43414 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 7, c3 == 2, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43420 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 6, c1 == 10, 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" 
+rule "#43424 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 6, c1 == 6, 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" 
+rule "#43429 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 6, c1 == 5, c3 == 9, 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" 
+rule "#43432 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 6, c1 == 5, c3 == 6, 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" 
+rule "#43438 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 6, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43441 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 6, c1 == 2, c3 == 12, 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" 
+rule "#43452 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 6, c1 == 2, c3 == 1, 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" 
+rule "#43454 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, c2 > 2.0, c4 > 7.0, c3 <= 4.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43456 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43459 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 7, 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" 
+rule "#43467 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 6, c3 == 7, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#10079 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43472 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 6, c3 == 2, 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" 
+rule "#43474 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 5, 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" 
+rule "#43476 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 3, 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" 
+rule "#43477 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 2, c3 == 13, 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" 
+rule "#43478 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 2, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43488 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 5, c1 == 2, c3 == 2, 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" 
+rule "#43491 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 13, 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" 
+rule "#43492 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43494 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43499 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 8, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43507 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 8, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43508 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 8, c3 == 1, 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" 
+rule "#43509 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43516 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 6, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43521 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 6, c3 == 2, 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" 
+rule "#43524 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 4, 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" 
+rule "#43525 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 3, 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" 
+rule "#43526 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 4, c1 == 2, 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" 
+rule "#43528 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, c4 <= 9.5, c3 > 3.0, c1 <= 7.0, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 3, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43531 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 3, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43532 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 3, c1 == 9, 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" 
+rule "#43542 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, c4 > 9.5, c1 <= 8.0, c2 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 2, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43546 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 2, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43556 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 2, c1 == 1, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43565 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 2, c1 == 1, c3 == 1, 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" 
+rule "#43570 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 1, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43576 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 1, c1 == 8, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43578 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 1, c1 == 8, c3 == 6, 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" 
+rule "#43588 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 1, c1 == 3, 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" 
+rule "#43589 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 7, c5 == 1, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43592 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 12, 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" 
+rule "#43593 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10111 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43597 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, c2 > 1.5, c3 <= 9.0, c4 > 2.0, c1 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 10, c3 == 10, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43601 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 10, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43608 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43612 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 4, 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" 
+rule "#43614 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, c2 > 1.5, c3 <= 9.0, c4 <= 2.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#10115 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43615 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 13, c1 == 1, 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" 
+rule "#43621 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 12, c1 == 12, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43629 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 12, c1 == 12, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43631 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 12, c1 == 10, 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" 
+rule "#43632 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 12, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43633 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 12, c1 == 8, 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" 
+rule "#43636 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43639 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 12, c1 == 2, 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" 
+rule "#43641 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 11, c3 == 13, 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" 
+rule "#43642 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 11, c3 == 12, 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" 
+rule "#43643 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 11, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43646 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 11, c3 == 8, 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" 
+rule "#43647 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 11, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43649 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 11, c3 == 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" 
+rule "#43650 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 11, c3 == 4, 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" 
+rule "#43655 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 12, 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" 
+rule "#43656 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 <= 13, c4 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43657 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43658 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 9, 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" 
+rule "#43659 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 8, 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" 
+rule "#43663 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 6, c3 == 11, 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" 
+rule "#43673 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 6, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#43676 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 10, c1 == 2, 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" 
+rule "#43679 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 13, 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" 
+rule "#43680 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43683 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 11, c1 == 11, 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" 
+rule "#43685 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 > 11, c5 <= 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 11, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43686 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 11, c1 == 8, 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" 
+rule "#43689 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 11, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43690 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 11, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43695 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43698 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43703 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 9, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43705 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 7, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43708 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 7, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43710 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 7, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43711 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 7, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#43713 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 7, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43714 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 7, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 6, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43722 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43724 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 6, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43725 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 6, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#43728 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 6, c1 == 3, 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" 
+rule "#43733 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 5, c3 == 11, 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" 
+rule "#43737 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 5, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43741 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 5, c3 == 3, 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" 
+rule "#43746 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43748 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43749 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 6, 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" 
+rule "#43755 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 5, c3 == 10, 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" 
+rule "#43759 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 5, c3 == 6, 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" 
+rule "#43765 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 4, 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" 
+rule "#43766 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 4, c1 == 3, 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" 
+rule "#43770 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 3, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43772 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 3, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43773 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 3, c3 == 9, 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" 
+rule "#43776 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 3, c3 == 6, 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" 
+rule "#43777 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 3, c3 == 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" 
+rule "#43780 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 > 9.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 3, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#10159 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43786 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 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 2, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43789 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 2, c3 == 6, 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" 
+rule "#43791 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43798 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43799 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43802 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 6, 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" 
+rule "#43805 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 3, 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" 
+rule "#43807 poker_hand = 3 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)
+		 examples.Poker(c4 == 1, c2 == 6, c5 == 1, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#43808 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 13, c1 == 13, 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" 
+rule "#43810 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 13, c1 == 11, 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" 
+rule "#43811 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 13, c1 == 10, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43821 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 13, c1 == 10, c5 == 3, 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" 
+rule "#43824 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 13, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43825 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 13, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43831 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 13, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43835 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 11, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43838 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 11, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43839 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 11, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 11, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 11, c1 == 1, 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" 
+rule "#43847 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 <= 6.0, c4 <= 3.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 10, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43850 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 10, c5 == 10, 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" 
+rule "#43851 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, c3 > 2.5, c4 <= 3.5, c1 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 10, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 10, c5 == 7, 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" 
+rule "#43855 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 10, c5 == 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" 
+rule "#43857 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, c2 > 6.0, c5 <= 7.0, c1 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 10, c5 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43858 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 10, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43869 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 10, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43871 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 10, c5 == 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" 
+rule "#43877 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, c2 > 6.0, c5 <= 7.0, c1 <= 6.5, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43880 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43882 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 9, c1 == 3, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43902 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 8, c1 == 8, 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" 
+rule "#43905 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 8, c1 == 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" 
+rule "#43907 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 8, c1 == 3, 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" 
+rule "#43908 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 8, c1 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43910 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43911 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43912 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43915 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43916 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 7, 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" 
+rule "#43917 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 6, 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" 
+rule "#43920 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 == 4, c3 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 3, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10197 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43921 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 2, 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" 
+rule "#43922 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 7, c1 == 1, 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" 
+rule "#43925 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 == 4, c3 > 1.5, c1 <= 7.0, c2 > 7.0, c4 <= 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 6, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43926 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 6, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43927 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 6, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43929 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 6, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43934 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 6, c1 == 2, 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" 
+rule "#43935 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 6, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43939 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 10, 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" 
+rule "#43942 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 7, 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" 
+rule "#43944 poker_hand = 3 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#43946 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 3, 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" 
+rule "#43947 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 2, 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" 
+rule "#43948 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 5, c1 == 1, 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" 
+rule "#43951 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 11, 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" 
+rule "#43953 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, c5 <= 1.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43954 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43955 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43956 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 6, 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" 
+rule "#43958 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43959 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 3, 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" 
+rule "#43961 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 > 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 4, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#43963 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 3, c5 == 12, 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" 
+rule "#43969 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 3, c5 == 6, 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" 
+rule "#43971 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 <= 7.0, c3 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 3, c5 == 4, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
 end
 
-rule "#10219 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#43982 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 13, c1 == 6, 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" 
+rule "#43986 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 13, c1 == 2, 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" 
+rule "#43990 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 10, 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" 
+rule "#43991 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43992 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43994 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 2, c5 == 2, 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" 
+rule "#44003 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)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 1, c1 == 10, 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" 
+rule "#44005 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 1, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44011 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 1, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44012 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 5, c3 == 1, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44016 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 13, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44017 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 13, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44019 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 13, c1 == 7, 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" 
+rule "#44020 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 13, c1 == 6, 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" 
+rule "#44021 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 13, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44027 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 12, 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" 
+rule "#44032 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 7, 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" 
+rule "#44041 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 5, c1 == 6, 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" 
+rule "#44042 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 5, c1 == 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" 
+rule "#44047 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44050 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 2, c1 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44051 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 2, c1 == 11, 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" 
+rule "#44056 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 2, c1 == 6, 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" 
+rule "#44057 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 2, c1 == 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" 
+rule "#44063 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 == 4, c3 <= 4.0, c2 > 7.5, c1 > 5.5, c4 <= 10.0, c5 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 1, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44066 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 1, c1 == 9, 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" 
+rule "#44072 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 12, c3 == 1, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44075 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 13, 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" 
+rule "#44077 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 11, 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" 
+rule "#44081 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 7, 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" 
+rule "#44083 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 5, 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" 
+rule "#44084 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 == 4, c3 > 4.0, c1 > 9.5, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44095 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 3, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44096 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 3, c1 == 2, 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" 
+rule "#44097 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, c5 > 10.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 11, c3 == 3, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44100 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 10, c1 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44105 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 10, c1 == 13, c3 == 8, 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" 
+rule "#44113 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 10, c1 == 12, 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" 
+rule "#44118 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 10, c1 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44120 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 10, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44121 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 10, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44122 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 10, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44124 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 10, c1 == 1, 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" 
+rule "#44125 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 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44127 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 12, c3 == 12, 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" 
+rule "#44128 poker_hand = 5 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 12, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#44143 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 11, c3 == 9, 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" 
+rule "#44149 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 11, c3 == 3, 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" 
+rule "#44150 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 11, c3 == 2, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44154 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 8, 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" 
+rule "#44155 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 7, 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" 
+rule "#44156 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 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" 
+rule "#44157 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44160 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 2, 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" 
+rule "#44161 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 9, c1 == 1, 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" 
+rule "#44167 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 8, c3 == 8, 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" 
+rule "#44169 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 8, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44172 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 8, c3 == 3, 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" 
+rule "#44174 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 8, c3 == 1, 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" 
+rule "#44176 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, c1 <= 5.0, c2 > 6.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10283 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44180 poker_hand = 5 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 7, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#44186 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 7, c1 == 2, 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" 
+rule "#44192 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44194 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 11, c1 == 9, 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" 
+rule "#44203 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 10, 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" 
+rule "#44204 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10288 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44206 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44207 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 6, 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" 
+rule "#44209 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44211 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 6, c3 == 2, 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" 
+rule "#44214 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, c5 > 6.0, c1 <= 5.0, c4 <= 7.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 5, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44217 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 5, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44221 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 5, c3 == 5, 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" 
+rule "#44224 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 5, c3 == 2, 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" 
+rule "#44226 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 13, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44229 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 13, c3 == 10, 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" 
+rule "#44232 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 > 2.5, c4 > 8.5, c5 <= 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 13, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44240 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44242 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44243 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44244 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44245 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44247 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44250 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 4, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44251 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 13, 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" 
+rule "#44252 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 <= 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44254 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44259 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 5, 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" 
+rule "#44264 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 2, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44265 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 2, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44270 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 3, c1 == 2, c3 == 5, 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" 
+rule "#44279 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 2, c1 == 10, 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" 
+rule "#44280 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 2, c1 == 9, 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" 
+rule "#44281 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 2, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44282 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 2, c1 == 7, 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" 
+rule "#44284 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.0, c5 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 2, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44286 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 2, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#44293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 1, c3 == 9, 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" 
+rule "#44297 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 1, c3 == 5, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
 end
 
-rule "#10322 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44305 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 1, c3 == 4, c1 == 6, 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" 
+rule "#44307 poker_hand = 6 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)
+		 examples.Poker(c4 == 1, c2 == 4, c5 == 1, c3 == 4, c1 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#44314 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 13, 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" 
+rule "#44317 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 > 9.5, c3 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10328 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44318 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44320 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 7, 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" 
+rule "#44321 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, c3 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44322 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 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" 
+rule "#44323 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44324 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44325 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44326 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 13, c3 == 1, 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" 
+rule "#44327 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 12, c3 == 13, 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" 
+rule "#44328 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 12, c3 == 12, 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" 
+rule "#44332 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 12, c3 == 8, 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" 
+rule "#44334 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 > 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 12, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44335 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 12, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44342 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 11, 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" 
+rule "#44344 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 9, 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" 
+rule "#44345 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 8, 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" 
+rule "#44351 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 6, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10343 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44359 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 6, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44360 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 5, 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" 
+rule "#44371 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 4, c3 == 3, 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" 
+rule "#44374 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 11, c5 == 3, 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" 
+rule "#44377 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, c1 <= 12.5, c2 <= 3.0, c5 > 2.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 10, c5 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44383 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 10, c5 == 10, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44389 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 10, c5 == 10, c3 == 4, 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" 
+rule "#44394 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, c1 <= 12.5, c2 > 3.0, c5 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 10, c5 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44395 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 10, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44396 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 10, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44399 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 10, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44400 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 10, c5 == 2, 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" 
+rule "#44402 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 13, 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" 
+rule "#44403 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, c1 > 8.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44405 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44406 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44411 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 8, c3 == 9, 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" 
+rule "#44416 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 8, c3 == 4, 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" 
+rule "#44423 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44425 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44426 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 9, c5 == 1, 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" 
+rule "#44429 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 8, c5 == 11, 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" 
+rule "#44431 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 8, c5 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 8, c5 == 8, 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" 
+rule "#44434 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 8, c5 == 6, 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" 
+rule "#44436 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 8, c5 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 8, c5 == 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" 
+rule "#44439 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 8, c5 == 1, 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" 
+rule "#44443 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 10, 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" 
+rule "#44444 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, c2 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44445 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44452 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 7, c3 == 1, 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" 
+rule "#44453 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 13, 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" 
+rule "#44455 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44457 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44459 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 7, 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" 
+rule "#44466 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 3, c5 == 10, 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" 
+rule "#44467 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 3, c5 == 9, 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" 
+rule "#44471 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 3, c5 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44475 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 3, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 2, c5 == 8, 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" 
+rule "#44487 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 2, c5 == 2, 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" 
+rule "#44489 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 6, c3 == 1, 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" 
+rule "#44491 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 5, c3 == 12, 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" 
+rule "#44493 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 <= 3.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 5, c3 == 10, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10382 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44494 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 <= 10.0, c5 <= 8.0, c4 > 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 5, c3 == 9, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44495 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 5, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44497 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 5, c3 == 6, 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" 
+rule "#44499 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 <= 10.0, c5 <= 8.0, c4 <= 6.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 5, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44500 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 5, c3 == 3, 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" 
+rule "#44501 poker_hand = 5 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 5, c3 == 2, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#44503 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44505 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44509 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 10, c3 == 10, 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" 
+rule "#44511 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 10, c3 == 8, 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" 
+rule "#44512 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 10, c3 == 7, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44521 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44522 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44527 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 4, c5 == 1, 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" 
+rule "#44534 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 3, c3 == 7, 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" 
+rule "#44535 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 3, c3 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44538 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 3, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44541 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 2, c3 == 13, 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" 
+rule "#44545 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 2, c3 == 11, c5 == 11, 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" 
+rule "#44550 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 2, c3 == 11, c5 == 6, 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" 
+rule "#44564 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 2, c3 == 10, c5 == 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" 
+rule "#44567 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 2, c3 == 10, c5 == 2, 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" 
+rule "#44571 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 2, c3 == 7, 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" 
+rule "#44574 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 2, c3 == 4, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44577 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 2, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44581 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 12, c3 == 11, 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" 
+rule "#44589 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 12, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44594 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 9, 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" 
+rule "#44597 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)
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44598 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44600 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44602 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 3, c1 == 1, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44603 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44606 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 10, 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" 
+rule "#44607 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 9, 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" 
+rule "#44608 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44609 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 7, 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" 
+rule "#44614 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 3, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44623 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 3, c1 == 3, 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" 
+rule "#44626 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 2, 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" 
+rule "#44627 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 13, c3 == 1, 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" 
+rule "#44629 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 13, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44633 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 13, c3 == 8, 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" 
+rule "#44638 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 13, c3 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44643 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 12, c3 == 11, 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" 
+rule "#44653 poker_hand = 2 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 12, c3 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44658 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 9, c3 == 11, 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" 
+rule "#44664 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 9, c3 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44667 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 9, c3 == 2, 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" 
+rule "#44670 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 8, c3 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 8, c3 == 5, 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" 
+rule "#44682 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 7, 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" 
+rule "#44684 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 5, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44687 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 12, c1 == 2, 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" 
+rule "#44691 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 == 4, c2 > 2.0, c1 > 3.0, c3 > 1.5, c4 > 2.5, c5 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 11, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44692 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 11, c1 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44695 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 11, c1 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44698 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 11, c1 == 4, 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" 
+rule "#44701 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 11, c1 == 1, 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" 
+rule "#44702 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 10, c3 == 13, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44704 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 10, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 10, c3 == 5, c1 == 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" 
+rule "#44720 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 10, c3 == 5, c1 == 3, 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" 
+rule "#44725 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 10, c3 == 2, 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" 
+rule "#44729 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 12, 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" 
+rule "#44730 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, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 11, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44733 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 9, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44745 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44750 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44756 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 1, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44763 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 8, c1 == 1, c3 == 2, 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" 
+rule "#44765 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 13, 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" 
+rule "#44766 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 <= 1.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44767 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 11, 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" 
+rule "#44770 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 8, 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" 
+rule "#44773 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 5, 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" 
+rule "#44780 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 3, c3 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44781 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 3, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44783 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 3, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44788 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44789 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 1, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44800 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 7, c1 == 1, c3 == 2, 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" 
+rule "#44805 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 6, c1 == 10, 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" 
+rule "#44809 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 > 9.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 6, c1 == 6, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44810 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 6, c1 == 5, 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" 
+rule "#44813 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 6, c1 == 2, 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" 
+rule "#44816 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 == 1, c2 > 1.5, c4 <= 6.5, c3 <= 11.0, c1 > 8.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 12, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44817 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 11, 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" 
+rule "#44819 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 9, 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" 
+rule "#44820 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44822 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44826 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 4, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44836 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 4, c3 == 1, 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" 
+rule "#44837 poker_hand = 4 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 3, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#44838 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 2, 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" 
+rule "#44839 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 5, c1 == 1, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 4, c1 == 13, 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" 
+rule "#44845 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 == 2, c1 <= 5.5, c2 > 9, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 4, c1 == 8, poker_hand : poker_hand)
 	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 4, c1 == 7, 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" 
+rule "#44853 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)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 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" 
+rule "#44855 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 == 1, c1 <= 11.0, c2 <= 4.0, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 11, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10471 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44860 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 == 1, c1 <= 11.0, c2 > 4.0, c3 > 13, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 10, c3 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10472 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44869 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 == 1, c1 <= 11.0, c2 > 4.0, c3 <= 13, c4 > 11.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 9, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-rule "#10474 poker_hand = 8 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+rule "#44870 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 == 1, c1 <= 11.0, c2 > 4.0, c3 <= 13, c4 <= 11.5, c5 > 12.5, poker_hand : poker_hand)
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 8, poker_hand : poker_hand)
 	 then 
-		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
 end
 
-//THE END: Total number of facts correctly classified= 19967 over 25010
-//with 10476 number of rules over 10476 total number of rules 
+rule "#44873 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44876 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44877 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 3, c1 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44880 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 2, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 2, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44884 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 2, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44887 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 2, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44888 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 2, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44889 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 2, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#44893 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 1, c1 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44896 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 1, c1 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44900 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 1, c1 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44901 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 2, c5 == 1, c1 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44904 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 13, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44905 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 13, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44908 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 13, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44911 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 13, c3 == 6, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44912 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 13, c3 == 6, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44925 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 13, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44926 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 13, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44928 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 13, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44930 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 12, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44933 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 12, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44935 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 12, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44936 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 12, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44937 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 12, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44940 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 12, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44942 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44944 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44945 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44946 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44949 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44950 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44952 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 3, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44962 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 3, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44966 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 11, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44968 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 10, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44970 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 10, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44973 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 10, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44976 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 10, c3 == 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44982 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 9, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44984 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 9, c5 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#44995 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 9, c5 == 8, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#44997 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 9, c5 == 8, c3 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#44999 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 9, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45007 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 8, c5 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45010 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 8, c5 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#45017 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 8, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#45018 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 7, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45019 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 7, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 7, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 7, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45023 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 7, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45028 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 7, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45029 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 7, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#45036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 6, c5 == 10, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45037 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 6, c5 == 10, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#45049 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 6, c5 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45051 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 6, c5 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45055 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 6, c5 == 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#45057 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 5, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 5, c3 == 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45060 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 5, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45062 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 5, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45063 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 5, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45064 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 5, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#45066 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 5, c3 == 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#45072 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 4, c3 == 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#45074 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 4, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45075 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 4, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45083 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 3, c3 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#45088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 3, c3 == 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45089 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 3, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45090 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 3, c3 == 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#45093 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 3, c3 == 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45096 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 2, c5 == 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45102 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 2, c5 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#45108 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 1, c3 == 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#45112 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 1, c3 == 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#45113 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 1, c3 == 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#45115 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(c4 == 1, c2 == 1, c1 == 1, c3 == 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+//THE END: Total number of facts correctly classified= 25010 over 25010
+//with 18780 number of rules over 45121 total number of rules 




More information about the jboss-svn-commits mailing list