atomspace icon indicating copy to clipboard operation
atomspace copied to clipboard

The OpenCog hypergraph database, query system and rule engine

Results 4 atomspace issues
Sort by recently updated
recently updated
newest added

Script to reproduce the bug: ``` from opencog.scheme import scheme_eval, scheme_eval_as from opencog.type_constructors import * atomspace = AtomSpace() set_default_atomspace(atomspace) scheme_eval(atomspace, '(use-modules (opencog))') #scheme_eval(atomspace, '(load "/usr/share/guile/site/2.2/opencog.scm")') scheme_eval(atomspace, '(TypeSet (Type "ConceptNode"))') #...

When we call GroundedObjectNode constructor second time with another object it silently uses old object and simply ignore new one. It should ether replace old object or throw an exception...

build_python_error_message and throw_on_error from PythonEval.cc looks quite useful for all code working with python c-api. Not sure if it should be moved to coguitls or just separate header in atomspace