Re: JESS: Modify in template

2007-07-18 Thread M Ismail
many thanks for the replay. Bobs list is working fine but i am also interested in how defrule my-rule works. how can i use it? (defrule my-rule ?fact - (objects (o_id 90))) = (modify ?fact (o_description NoKnife))) regards, M.ismail From: Ernest Friedman-Hill [EMAIL PROTECTED]

Re:Re: JESS: How to broadcast modified facts in multi-thread environment

2007-07-18 Thread tanming_tanming
Thank Ernest ,may be just use one object in the server is good for my system.But ,I still want to know if Jess has the property that I pointed previously: 1)How does other jess objects notes the facts has been modified and to reload it 2007-07-18,Ernest Friedman-Hill[EMAIL PROTECTED] Why

JESS: Problems using jess in pda

2007-07-18 Thread Sasigain Usoa
Hello: I am using jess in an agent platform created by JADE. I have no problems when the agents that use the rules are in a pc, but when I try to do the same in a pda with a j9 java virtual machine I get the error reported above at the line code: Rete rete=new Rete(); The error that I get is

Re: JESS: Problems using jess in pda

2007-07-18 Thread Ernest Friedman-Hill
J9 is a J2ME JVM; it implements the limited J2ME apis, which are incompatible with the standard Java APIs that Jess is written for. The standard version of Jess doesn't run on J2ME; you'll find this to be the case for most third-party libraries. You might look at a J2SE JVM for small

JESS: modifying facts

2007-07-18 Thread Krasnigor, Scott L (N-AST)
I have track kinematic data in working memory. When a track's kinematics are updated, I need to modify the associated kinematic data in working memory. I tried using the add method, however, looking at the watch statements, new facts were being created instead of modifying the existing facts. I