package acgtk

  1. Overview
  2. Docs
Abstract Categorial Grammar development toolkit

Install

Dune Dependency

Authors

Maintainers

Sources

acg-2.1.0-20240219.tar.gz
sha512=5d380a947658fb1201895cb4cb449b1f60f54914c563e85181d628a89f045c1dd7b5b2226bb7865dd090f87caa9187e0ea6c7a4ee3dc3dda340d404c4e76c7c2

doc/acgtk.datalogLib/DatalogLib/Datalog/ASRule/index.html

Module Datalog.ASRuleSource

Sourcetype rule = Datalog_AbstractSyntax.AbstractSyntax.Rule.rule = {
  1. id : int;
  2. lhs : Datalog_AbstractSyntax.AbstractSyntax.Predicate.predicate;
  3. e_rhs : (Datalog_AbstractSyntax.AbstractSyntax.Predicate.predicate * int) list;
    (*

    represents the extensionnal predicates of the rule. The int represents the position in the rule

    *)
  4. i_rhs : (Datalog_AbstractSyntax.AbstractSyntax.Predicate.predicate * int) list;
    (*

    represents the intensionnal predicates of the rule. The int represents the position in the rule

    *)
  5. i_rhs_num : int;
    (*

    stores the number of intensional predicates occurring in the rule

    *)
  6. rhs_num : int;
    (*

    stores the number of predicates occurring in the rule body

    *)
}
Sourcemodule Rules : Set.S with type elt = rule
Sourcemodule RuleMap : Map.S with type key = rule
Sourceval set_new_id : int -> rule -> rule

set_new_id id rule returns a rule similar to rule except that its id is id

set_new_id_from_gen returns pair (rule',from_gen') wherer rule' is a rule similar to rule excepts that it has a new id generated from from_gen generator, and the latter has been updated to from_gen'.

get_variables_in_rule rule returns the set of variables in the rule rule

get_subgoal rule i returns the predicate at the position i in the body of the rule rule

OCaml

Innovation. Community. Security.