Re: [rules-users] Nullable Planning Variable

2013-11-15 Thread Geoffrey De Smet
Use optaplanner 6.0.0.CR5 [1], that supports nullable planning variables in construction heuristics. [1] http://www.optaplanner.org/community/droolsPlannerRenamed.html On 13-11-13 07:31, newbie wrote: According to Drools 5.5 reference doc Nullable planning variables are not supported for

Re: [rules-users] Equal shift assignment based on employment form

2013-11-15 Thread Geoffrey De Smet
On 12-11-13 14:22, ns wrote: Hi, I would like to distribute shifts equally among employees based on their employment form (full time or part time: 100%, 75%, 50%, ...). I have a variable for each employee that holds the employment form. How do I make sure all shifts get distributed equally,

Re: [rules-users] Equal shift assignment based on employment form

2013-11-15 Thread ns
Hi Geoffrey, thanks for the reply. Very helpful. I will try that. Kind regards, Nick -- View this message in context: http://drools.46999.n3.nabble.com/Equal-shift-assignment-based-on-employment-form-tp4026746p4026787.html Sent from the Drools: User forum mailing list archive at Nabble.com.

Re: [rules-users] Equal shift assignment based on employment form

2013-11-15 Thread ns
I managed to create a rule to distribute the shiftassignments equally, using your fairness example. I am now however stuck on the part time, full time problem. A person that works part time (50%) should get assigned only half the shifts that a full time gets assigned. How do I do that? I have

[rules-users] Info on Drools 6 documentation

2013-11-15 Thread Gianvicenzo CAPUTO
Hello, It seems to me that the documentation of Drools Guvnor 6.0.0 RC5 does not correspond to the web interface I see. Is that me or there is indeed a discrepancy? In the latter case anyone knows when the updated doc will be available? the final release probably? Thanks for your help.

Re: [rules-users] Info on Drools 6 documentation

2013-11-15 Thread Michael Anstis
Hello, Drools Workbench documentation is now herehttps://github.com/droolsjbpm/droolsjbpm-knowledge/tree/master/kie-docs/drools-docs . The existing drools-wb-docs will be deleted very soon. With kind regards, Mike On 15 November 2013 15:21, Gianvicenzo CAPUTO gcap...@pactenovation.frwrote:

[rules-users] Drools 6 Unable to build index of kmodule.xml

2013-11-15 Thread captainrhino
I have a non maven project which I think I have included all the relevant dependencies manually into I run the following code KieServices ks = KieServices.Factory.get(); KieContainer kContainer = ks.getKieClasspathContainer(); KieBase kieBase = kContainer.getKieBase();

[rules-users] Scaling Drools based application

2013-11-15 Thread Arul Prashanth
We have an requirement to scale the implemented Drools Rule Engine to all states in United States. With respect to the current implementation we have around 50 decision tables which when packaged creates a 200 MB pkg file and another pkg around 150 MB. The request which the drools engine consumes

[rules-users] Usage of Drools Configuration Attributes

2013-11-15 Thread Arul Prashanth
Anyone know what these options are for and does this configuration help in reducing the rule execution time and memory usage. I couldn't find much details on these option apart from few like maintainTMS and shareAlphaNodes. drools.maintainTms drools.assertBehaviour

Re: [rules-users] Scaling Drools based application

2013-11-15 Thread xyz
Try with multiple drools sessions.You already mentioned that you pkgs specific to particular state.Hence process the different states with different sessions. Like one dedicated session for 5-7 states and put only state specific pkgs in that session. -- View this message in context: