2021-02-12 19:20:14 +03:00
|
|
|
(* This file is part of the Catala compiler, a specification language for tax and social benefits
|
|
|
|
computation rules. Copyright (C) 2020 Inria, contributor: Nicolas Chataing
|
|
|
|
<nicolas.chataing@ens.fr>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
|
|
in compliance with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
|
|
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
|
|
or implied. See the License for the specific language governing permissions and limitations under
|
|
|
|
the License. *)
|
|
|
|
|
|
|
|
(** Scope dependencies computations using {{:http://ocamlgraph.lri.fr/} OCamlgraph} *)
|
|
|
|
|
|
|
|
open Utils
|
|
|
|
|
|
|
|
(** {1 Scope variables dependency graph} *)
|
|
|
|
|
|
|
|
(** {2 Graph declaration} *)
|
|
|
|
|
|
|
|
(** Vertices: scope variables or subscopes.
|
|
|
|
|
|
|
|
The vertices of the scope dependency graph are either :
|
|
|
|
|
|
|
|
- the variables of the scope ;
|
|
|
|
- the subscopes of the scope.
|
|
|
|
|
|
|
|
Indeed, during interpretation, subscopes are executed atomically. *)
|
|
|
|
|
|
|
|
module Vertex : sig
|
2021-02-12 20:16:06 +03:00
|
|
|
type t = Var of Scopelang.Ast.ScopeVar.t | SubScope of Scopelang.Ast.SubScopeName.t
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
val format_t : Format.formatter -> t -> unit
|
|
|
|
|
|
|
|
include Graph.Sig.COMPARABLE with type t := t
|
|
|
|
end
|
|
|
|
|
2021-02-12 20:16:06 +03:00
|
|
|
module Edge : Graph.Sig.ORDERED_TYPE_DFT with type t = Pos.t
|
2021-02-12 19:20:14 +03:00
|
|
|
(** On the edges, the label is the position of the expression responsible for the use of the
|
|
|
|
variable. In the graph, [x -> y] if [x] is used in the definition of [y].*)
|
|
|
|
|
|
|
|
(** Module of the graph, provided by OCamlGraph *)
|
2021-02-12 20:16:06 +03:00
|
|
|
module ScopeDependencies : Graph.Sig.P with type V.t = Vertex.t and type E.label = Edge.t
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
(** {2 Graph computations} *)
|
|
|
|
|
|
|
|
(** Returns an ordering of the scope variables and subscope compatible with the dependencies of the
|
|
|
|
computation *)
|
|
|
|
|
2021-02-12 20:16:06 +03:00
|
|
|
val correct_computation_ordering : ScopeDependencies.t -> Vertex.t list
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Returns an ordering of the scope variables and subscope compatible with the dependencies of the
|
|
|
|
computation *)
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val check_for_cycle : Ast.scope -> ScopeDependencies.t -> unit
|
2021-02-12 20:16:06 +03:00
|
|
|
(** Outputs an error in case of cycles. *)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val build_scope_dependencies : Ast.scope -> ScopeDependencies.t
|
2021-02-12 20:16:06 +03:00
|
|
|
(** Builds the dependency graph of a particular scope *)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
(** {1 Exceptions dependency graph} *)
|
|
|
|
|
2022-01-05 11:14:43 +03:00
|
|
|
module ExceptionsDependencies : Graph.Sig.P with type V.t = Ast.RuleSet.t and type E.label = Edge.t
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
val build_exceptions_graph : Ast.rule Ast.RuleMap.t -> Ast.ScopeDef.t -> ExceptionsDependencies.t
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val check_for_exception_cycle : ExceptionsDependencies.t -> unit
|