https://github.com/codenameyau/inference-engine
:package: Node.js Logical reasoning machine (WIP)
https://github.com/codenameyau/inference-engine
Last synced: 9 months ago
JSON representation
:package: Node.js Logical reasoning machine (WIP)
- Host: GitHub
- URL: https://github.com/codenameyau/inference-engine
- Owner: codenameyau
- License: mit
- Created: 2014-12-10T21:59:37.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-18T18:24:38.000Z (over 11 years ago)
- Last Synced: 2025-10-14T16:04:00.490Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 273 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
inference-engine
================
Reasoning machine built with node
###Running the demo
1. Clone this repo
2. Run: `npm install`
3. Run: `node app/main.js`
###Sample demo
```
Welcome to the inference engine demo!
Type "help" for help.
> all dogs are mammals
Okay.
> all cats are mammals
Okay.
> all mammals are hairy animals
Okay.
> all hairy animals are animals
Okay.
> all birds are animals
Okay.
> are all dogs animals
true
> are all dogs cats
false
> are all birds cats
false
> are all animals birds
false
```