Re: [rules-users] Inferencing

2010-03-10 Thread Wolfgang Laun
2010/3/9 Tim de Jager : > > > Also interesting read about the Airliner application Greg, thanks! Not "Up in the Air" but on rails: http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-549/paper6.pdf -W ___ rules-users mailing list rules-use

Re: [rules-users] Inferencing

2010-03-08 Thread Tim de Jager
nteresting read about the Airliner application Greg, thanks! -Oorspronkelijk bericht- Van: rules-users-boun...@lists.jboss.org namens Edson Tirelli Verzonden: ma 8-3-2010 22:33 Aan: Rules Users List Onderwerp: Re: [rules-users] Inferencing I don't know much about Visual Rules so

Re: [rules-users] Inferencing

2010-03-08 Thread Greg Barton
Jager wrote: > From: Tim de Jager > Subject: Re: [rules-users] Inferencing > To: "Rules Users List" > Date: Monday, March 8, 2010, 2:37 PM > > > > Thanks a lot everybody for their awnsers, this clarifies it > to some extend :)! > > What I was talk

Re: [rules-users] Inferencing

2010-03-08 Thread Edson Tirelli
> engine an a code generated one. Would they differ in functionality in any > way? > > Thanks! > > -Oorspronkelijk bericht----- > Van: rules-users-boun...@lists.jboss.org namens Edson Tirelli > Verzonden: ma 8-3-2010 17:55 > Aan: Rules Users List > Onderwerp: Re: [

Re: [rules-users] Inferencing

2010-03-08 Thread Greg Barton
ode all we have to do is subscribe to the aircraft events, a simpler and less resource intensive process.) --- On Mon, 3/8/10, Wolfgang Laun wrote: > From: Wolfgang Laun > Subject: Re: [rules-users] Inferencing > To: "Rules Users List" > Date: Monday, March 8, 2010, 1:13 PM

Re: [rules-users] Inferencing

2010-03-08 Thread Mauricio Salatino
n any > way? > > Thanks! > > -Oorspronkelijk bericht- > Van: rules-users-boun...@lists.jboss.org namens Edson Tirelli > Verzonden: ma 8-3-2010 17:55 > Aan: Rules Users List > Onderwerp: Re: [rules-users] Inferencing > > > Hi Tim, > > That is a nice topic fo

Re: [rules-users] Inferencing

2010-03-08 Thread Tim de Jager
in any way? Thanks! -Oorspronkelijk bericht- Van: rules-users-boun...@lists.jboss.org namens Edson Tirelli Verzonden: ma 8-3-2010 17:55 Aan: Rules Users List Onderwerp: Re: [rules-users] Inferencing Hi Tim, That is a nice topic for studies, but be prepared for a tsunami of information and quite

Re: [rules-users] Inferencing

2010-03-08 Thread Wolfgang Laun
Delayed modifications of the facts database are bound to have an impact on the semantics of your rule set (unless, perhaps, you are writing them anticipating this execution cycle). A stateful session effects changes immediately, which, in turn, affects the facts and the agenda immediately. Delaying

Re: [rules-users] Inferencing

2010-03-08 Thread Pavel Tavoda
Yes you are right but that should be a hidden detail like asynchronous connect is internally synchronous because you are waiting for confirmation packet (but not response) ;-). No way to implement execution without changing "global" state - am I right? BTW I implemented for one small subproject (I

Re: [rules-users] Inferencing

2010-03-08 Thread Edson Tirelli
Interesting analogy, but careful here: "Statefull is just series of stateless session where you transfer state from one session to another." Not sure what lead you to think that way, but it is actually the opposite, and trying to explain that will make things REALLY confusing for some. So

Re: [rules-users] Inferencing

2010-03-08 Thread Edson Tirelli
Hi Tim, That is a nice topic for studies, but be prepared for a tsunami of information and quite a few controversies. :) Regarding your question, I am not sure I completely understand what you mean, but it is important to be clear that "generation of code" is an orthogonal concern to the

Re: [rules-users] Inferencing

2010-03-08 Thread Pavel Tavoda
It's like synchronous vs. asynchronous communication. In reality it's always asynchronous but from top view it appear synchronous. Similar to stateless vs. statefull. Statefull is just series of stateless session where you transfer state from one session to another. Look for Drools statefull persis

[rules-users] Inferencing

2010-03-08 Thread Tim de Jager
Hi everybody, I'm currently doing my bachelor thesis on Rule engines. This includes comapring different Rule engine products. I have set up a small Java program (Conway's game of life) and I'm writing the 'engine' in different Rule engines, while keeping the same GUI,CellGrid etc. I have already