We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to run the rule
(Predicate "#$termOfUnit" (Concept "#<") ((Concept "#$GraduateFn") (Concept "#$DentalSchool")) (Concept ">") ((Concept "#$GraduateFn") (Concept "#$DentalSchool")))
in guile, I get following error:
Wrong type to apply: (ConceptNode "#$GraduateFn")
The text was updated successfully, but these errors were encountered:
The rule has been transcripted with cycl-opencog-0-1.py One should get similar results by running it with one of the testset files....
Sorry, something went wrong.
You have placed parenthesis incorrectly. Try this:
(Predicate "#$termOfUnit") (Concept "#<") (Concept "#$GraduateFn") (Concept "#$DentalSchool") (Concept ">") (Concept "#$GraduateFn") (Concept "#$DentalSchool")
So, Predicate can only take a single string argument.
Predicate
To create scheme lists, you must use scheme list
list
To create AtomSpace lists, you must use Link (e.g. InheritanceLink)
Link
InheritanceLink
No branches or pull requests
When I try to run the rule
in guile, I get following error:
The text was updated successfully, but these errors were encountered: