Giter VIP home page Giter VIP logo

Comments (4)

giovinazzo-kevin avatar giovinazzo-kevin commented on August 13, 2024

See also #66. Ideally the new KB should implement the logical update view. Immutability should help in general, though this concerns dynamic predicates which need to be concurrent. Maybe a mix of both approaches can work.

from ergo.

giovinazzo-kevin avatar giovinazzo-kevin commented on August 13, 2024

The new KB should also implicitly encapsulate the dependency graph, as the two are so tightly coupled that they may as well be the same object.

EDIT: Or maybe this can be done at the interpreter scope level, before the KB is populated.

from ergo.

giovinazzo-kevin avatar giovinazzo-kevin commented on August 13, 2024

So, at a high level, the new KB should be a tree.

Each node has a parent, though there's no need to store its children because we only need to traverse the tree back to the root. Doing so gives us a full representation of the database.

When asserting a new predicate, it is inserted in the current node. When retracting, the current node is tried first, and on failure the parent is tried recursively. This makes it possible to isolate the predicates of a standard library from the predicates defined in user space, and makes it possible to reuse the standard library across different contexts.
TODO: Figure out scoping. Calls to assert and retract should target the correct node.

The whole tree shares an index. The index is composed of the predicate's signature and up to N arguments, allowing fast retrieval of facts by sidestepping unification unless strictly necessary.

In order to adhere to the logical update view, the knowledge base should have a "generation" id that is increased each time it is modified. This value, like the index, is shared by the entire tree. When clauses are retracted, they are not immediately erased from the database. Instead, their "erased" value is set the current generation. Once the current goal stops backtracking, these clauses can presumably be removed permanently from the knowledge base.

Each time an assertion or retraction happens:

  • The corresponding event is fired;
  • The dependency graph is updated;
  • The index is updated;
  • On assertion: The clause is compiled.

from ergo.

giovinazzo-kevin avatar giovinazzo-kevin commented on August 13, 2024

See termvm improvements mentioned by #77. If the data representing the predicates in the knowledge base is compiled as well, unification becomes very fast.

from ergo.

Related Issues (20)

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.