Re: JESS: [EXTERNAL] Emacs Jess Users?

2012-10-11 Thread Grant Rettke
On Wed, Oct 10, 2012 at 9:04 AM, Friedman-Hill, Ernest ejfr...@sandia.gov wrote: If you have a patch, let me know and I can post it for other people to use. Someone already posted describing the fix here but with a patch for it: http://planetjava.org/java-jess/2004-05/msg6.html Here is my

Re: JESS: [EXTERNAL] What is your preferred Eclipse version, distribution, and bitness for Jess 7*?

2012-10-11 Thread Grant Rettke
On Wed, Oct 10, 2012 at 9:06 AM, Friedman-Hill, Ernest ejfr...@sandia.gov wrote: Jess doesn't care, being a pure Java library. The 32 vs 64-bit question depends entirely on your own machine's architecture, and then the proper Eclipse distribution depends on what sort of code you intend to

Re: JESS: [EXTERNAL] Emacs Jess Users?

2012-10-11 Thread Andre Luiz Tietbohl Ramos
Hello, I'm having a problem to start Jess in ubuntu 12.04. I have jess-mode installed in /usr/share/emacs/site-lisp/jess-mode and when I try M-x jess-mode I receive the error below: setq: Symbol's value as variable is void: shared-lisp-mode-map Would anyone know how to solve this please? Jess

Re: JESS: [EXTERNAL] Emacs Jess Users?

2012-10-11 Thread Grant Rettke
On Wed, Oct 10, 2012 at 8:33 PM, Andre Luiz Tietbohl Ramos andreltra...@gmail.com wrote: I'm having a problem to start Jess in ubuntu 12.04. I have jess-mode installed in /usr/share/emacs/site-lisp/jess-mode and when I try M-x jess-mode I receive the error below: setq: Symbol's value as

JESS: [EXTERNAL] Ordered facts question

2012-10-11 Thread Grant Rettke
Hi, I'm working on 5.4. Ordered facts in file:///C:/x86/Jess71p2/docs/memory.html with Jess Jess Version 7.1p2 11/5/2008 where there is an example Jess (number (value 6)) I expected the ordered fact number to get created on-demand but instead got: Jess reported an error in routine

Re: JESS: [EXTERNAL] Ordered facts question

2012-10-11 Thread Friedman-Hill, Ernest
You can't type a fact directly at the prompt. You can add a fact to working memory using the (assert) function (as shown in section 5.2) or you can use the (deffacts) construct to create a group of facts that will then be added to working memory on reset events (as in section 5.5) . As a general