Giter VIP home page Giter VIP logo

expertsystem's Introduction

A basic IDE for a Prolog-inspired logic programming language. Semester project.

Of course it's can't be used for anything serious. Partly due to the same reasons Prolog can't be used for something serious and partly due to it's very weak if-powered core logic. And I'm not proud of that.

UI

User interface was made to look like Visual Studio's dark skin. Check out animations:

123

Logikek language

The task was to partly replicate Prolog language. Logikek language invented and is parsed with Sprache library.

Language consisits of three types of clauses.

Rule

For example we want to create a rule which declares that a good hobbie is the one which is fun.

GoodHobbie(X) : Fun(X);

X stands for an atom (like atom in Prolog). Atom is like a placeholder or a variable. Atoms must be one-letter.

Fact

Let's declare the fact that coding is fun.

Fun(Coding);

In the rule above we had an identical condition Fun(X). We also introduce a variable Coding and it's relation to Fun() clause.

Query

Now computer knows that a good hobbie is something fun and that coding is fun. So is coding a good hobbie? Let's find it out.

image

Here is a more complex example:

image

Put your attention to the output on the screenshot above. Logikek can find solutions if you leave an atom in a query statement just like Prolog.

expertsystem's People

Contributors

nuc134r avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.