OK, I can execute 'telnet localhost 17001' and 'scm' and enter into remote guile shell and then I can succesfully execute initialization: (use-modules (ice-9 readline)) (activate-readline) (add-to-load-path "/usr/local/share/opencog/scm") (add-to-load-path ".") (use-modules (opencog)) (use-modules (opencog query)) (use-modules (opencog exec))
Now I have 2 questions: 1) how can I load file from my filesystem into this guile shell - the file will contain my knowledge base as a set of node and link definitions. I prefer to write and keep my knowledge base in file. 2) I don't understand the running of rule engine. My knowledge base can contain lot of rules (ImplicationLinks, BindLInks) and I would like to get conclusions from this knowledge base - how can I do this? I am aware of the command cog-bind! (and other Scheme commands http://wiki.opencog.org/w/Scheme ) but that command is for on BindLink. *I would like to initiate a continuous process (forward chaining, arriving the the consequence set) when one BindLink modifies hypergraph and new rules are automatically searched to be matched with the updated hypergraph and so on, so on untile some termination criteria is achived. How can I initiate such process and how to define termination criteria?* -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/opencog. To view this discussion on the web visit https://groups.google.com/d/msgid/opencog/97116f38-506a-4e5b-bb33-79729636a10f%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
