Re: JESS: backchaining and the logical CE

2005-02-22 Thread ejfried
I think Timothy Redmond wrote: > > I have found an interaction between the logical keyword and the > backchaining facility which is either a bug or something I don't > understand. > It looks like the rule compiler doesn't properly account for logical dependencies on backward-chaining trigger

JESS: executeCommand

2005-02-22 Thread Andreas Holzbach
Hello, iB4m using the executeCommand Method from the ReteClass. My problem is: How can I get the results of the commands back, like when using Jess with the command line? Currently iB4m using the Value.toString Method, but thatB4s not really the same. For example: (facts) returns just nil and (run)

RE: JESS: executeCommand

2005-02-22 Thread Alan Moore
To trap jess events, such as rule firing, facts asserting, etc. see: http://herzberg.ca.sandia.gov/jess/docs/61/api/jess/JessListener.html alan __ Bleib immer locker From: [EMAIL PROTECTED] on behalf of Andreas Holzbach Sent: Tue 2/22/2005 5:31

Re: JESS: executeCommand

2005-02-22 Thread ejfried
The executeCommand() method is just a convenience method, a quick way to invoke a bit of Jess code from Java. By restricting yourself to using it alone, you'll be making a lot of work for yourself. Jess has a rich Java API which gives you access to everything you need. You'll just need to read the