Re: JESS: RHS of production system

2002-07-29 Thread Mahesh Gandhe
Jess. RuleML has a flavor called RuleML with Situated logic which could be used for this. But Situated logic is not just restricted to RuleML .Its a fairly genericconcept that would be used for any other encoding. Thank you. Regards, Mahesh Gandhe. [EMAIL PROTECTED] wrote: I think Wendy Liu wrote

JESS: invoking call function in a Jess Rule

2002-04-11 Thread Mahesh Gandhe
Hi , I need to call the functions of class in the body and head of the rule. It gives me not bound error. (defrule abc (test (bind ?vt (new java.util.Hashtable))) (test (call ?vt put “key” “value”)) = (call ?vt get "key")) can you tell me how to use call function in thehead and body part of the

Re: JESS: Some Questions on RuleML and JESS interoperability

2002-04-02 Thread Mahesh Gandhe
hi Manish , please take a look at the site http://gentoo.cs.umbc.edu/~mgandh1/. in our research group we are working on something similar to it. Regards, Mahesh G. [EMAIL PROTECTED] wrote: Hi, I am newbie to JESS and RuleML;I have these Questions: 1./How RuleML can be transformed to JESS

Re: JESS: Passing Context to the user defined function

2002-04-01 Thread Mahesh Gandhe
e POCclass... there are many possibilities.I think Mahesh Gandhe wrote: Hi , I am calling user defined function in the rule (in the body of the rule). This function is called using the “test CE”. My query is how to explicitly pass the Context object to this user function call in the defrule?.I tried looking

JESS: Salience and Agenda commands

2002-03-25 Thread Mahesh Gandhe
Hi , I have a problem while using salience feature.Salience feature will force the activated rules to runin the order of salience.But my requirement is that I want to run only one rule of highest priority.Is there any mechanism of blocking activated rules and force them not to run?. Buy using

JESS: Query regarding a Pattern in the Rule

2002-02-13 Thread Mahesh Gandhe
Hi, I have one query . My requirement of the pattern in Rules is as follows (defrule inverseof (?x http://www.daml.org/2001/03/daml+oil#inverseOf ?y) (?a ?y ?b) = (assert ( ?b ?x ?a))) But it gives the error Jess reported an error in routine Jesp.parsePattern. Message: Expected '( atom' . The

Re: JESS: I want a paper about Rete Algorithm

2002-02-01 Thread Mahesh Gandhe
hi friends, I got the paper from the AI journal (1987), I will post its information soon. Regards, Mahesh Gandhe. Harvinder Singh [EMAIL PROTECTED] wrote: Dear Friends, It is better if someone shares the most of popular production system algorithms! Harvinder ÀÌ°æÇö[Lee Kyoung Hyoun,ì°ÌÝúÛ

Re: JESS: java.lang.Boolean to Jess Boolean

2001-11-27 Thread Mahesh Gandhe
RUE andFuncall.FALSE in the jess.Funcall class.Note also that String constants in Java (and in Jess) use doublequotes, not single quotes.I think Mahesh Gandhe wrote: hi , I am writing the java code for the method so that the method could be invoked in the command line in jess. The code is as follows i