JESS: Execute rules in jess

2004-06-30 Thread Sergio Martín Ballesteros
Hello, How could I execute any rule I want in jess? Does exist any command to do this? Thanks _ Reparaciones, servicios a domicilio, empresas, profesionales... Todo en la guma telefsnica de QDQ. http://qdq.msn.es/msn.cfm --

RE: JESS: Execute rules in jess

2004-06-30 Thread Mitch Christensen
Assert the fact(s) that match the LHS of your rule. :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Sergio Martmn Ballesteros Sent: Wednesday, June 30, 2004 7:16 AM To: [EMAIL PROTECTED] Subject: JESS: Execute rules in jess Hello, How could I execute any

JESS: convert OWL/SWRL to JESS

2004-06-30 Thread Donal Murtagh
Hi, Does anyone know of a tool which will translate an OWL ontology into JESS facts? I'm also looking for a tool that can translate SWRL rules into JESS rules. Thanks in advance, Donal To unsubscribe, send the words 'unsubscri

RE: JESS: convert OWL/SWRL to JESS

2004-06-30 Thread Govoni, Darren
I actually did this in a round about way using Tucana RDF database (www.tucanatech.com). I loaded OWL directly into it and using Tucana's RDQL-like query languae can pull statements out of it and from there generate Jess facts quite easily. Then, it's trivial to use JESS forward chaining to writ

JESS: remove an activation in jess

2004-06-30 Thread Sergio Martín Ballesteros
Hello, Exist any way to remove an activation in jess. Which is the best way to use the method remove(activation). Thanks a lot. _ Dale rienda suelta a tu tiempo libre. Encuentra mil ideas para exprimir tu ocio con MSN Entretenimient

Re: JESS: convert OWL/SWRL to JESS

2004-06-30 Thread ejfried
I think Donal Murtagh wrote: > Hi, > > Does anyone know of a tool which will translate an OWL ontology into > JESS facts? OWLJessKB -- see http://edge.cs.drexel.edu/assemblies/software/owljesskb/ . > > I'm also looking for a tool that can translate SWRL rules into JESS > rules. Jess 7 has a n

Re: JESS: remove an activation in jess

2004-06-30 Thread ejfried
I think =?iso-8859-1?B?U2VyZ2lvIE1hcnTtbiBCYWxsZXN0ZXJvcw==?= wrote: [Charset iso-8859-1 unsupported, filtering to ASCII...] > Hello, > > Exist any way to remove an activation in jess. Which is the best way to use > the method remove(activation). > There's no documented way to do this. So wha

Re: JESS: remove an activation in jess

2004-06-30 Thread Sergio Martín Ballesteros
Hello, First of all thank you for all. I4m trying to implement a search algorithm, A* for example. I have to process all the activations, remove the first one, and go on whith the next, in order to do backtracking. It4s my way to especify jess that the activation removed doesn4t have to be act

RE: JESS: JESS and instances

2004-06-30 Thread Alan Moore
Title: RE: JESS: JESS and instances > > How can I share facts between different instances of Rete? > > You can duplicate them, but not share them. However, you can share (via definstance) an instance of a java object between two instances of Rete. Your question was about "facts" which, as E