Hello Sir,

I uncommented the (reset)(run) from the puzzle program which was written
towards the end of the entire code and then in my main java program I now
have the following

                                System.out.println( "Calling Puzzle Solver
Program");
                
                try
                {
                        Rete r = new Rete();
                        r.executeCommand( "Puzzle.clp" );
                        r.reset();
                        r.run();
                        System.out.println( "Puzzle solving problem ended");
                }
                catch( JessException je)
                { 
                        System.out.println( "Error occured");
                        System.out.println( je);
                }

even then the only thing I see on the console is 
"Calling Puzzle Solver Program"
"Puzzle solving problem ended"


I still dont see any of the outputs from my Puzze.clp jess file...

Pls help...
-- 
View this message in context: 
http://www.nabble.com/Printing-jess-statements-when-called-from-java-tf2062548.html#a5740027
Sent from the Jess forum at Nabble.com.
--------------------------------------------------------------------
To unsubscribe, send the words 'unsubscribe jess-users [EMAIL PROTECTED]'
in the BODY of a message to [EMAIL PROTECTED], NOT to the list
(use your own address!) List problems? Notify [EMAIL PROTECTED]
--------------------------------------------------------------------

Reply via email to