2008/6/9 <Archana.Dixit_at_cognizant.com>: > > > Well, > > We have to pass some data to Eclipse and get it back satisfying some > constraints and then process it. > Can you suggest me what are the other options to do so? So going back to you example, you would like to have a predicate that accepts a string and return a number: test(Arg1, Result):- Result is 3. You call this predicate using such construction: EC_ref Result; post_goal(term(EC_functor("test",1),EC_word("ABC"), Result)); if ( EC_resume() == EC_succeed) { post_goal(term(EC_functor("writeln",1),Result)); long result; EC_word(Result).is_long(&result); std:cout << result; } Best regards -- [ Wit Jakuczun w.jakuczun_at_wlogsolutions.com ] [ WLOG Solutions http://wlogsolutions.com ]Received on Mon Jun 09 2008 - 06:40:18 CEST
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET