// Build the RuleSets.
verbose( "Building RuleBase with " + numberOfRules + " rules..." );
RuleBaseBuilder builder = new RuleBaseBuilder( );
builder.addRuleSet( ruleSet );
builder.addRuleSet( new RuleSetReader( ).read( PrimeFactors.class.getResource( DRL_FILE ) ) );
RuleBase ruleBase = builder.build( );
verbose( "Built RuleBase with " + numberOfRules + " rules"
+ stopwatch( 0 ) );
// Determine random set of Facts to assert
verbose( "Generating " + numberOfFacts + " random numbers to assert..." );