mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
fc531777c0
The module is renamed to `Mark`, and functions renamed to avoid redundancy: `Marked.mark` is now `Mark.add` `Marked.unmark` is now `Mark.remove` `Marked.map_under_mark` is now simply `Mark.map` etc. `Marked.same_mark_as` is replaced by `Mark.copy`, but with the arguments swapped (which seemed more convenient throughout) Since a type `Mark.t` would indicate a mark, and to avoid confusion, the type `Marked.t` is renamed to `Mark.ed` as a shorthand for `Mark.marked` ; this part can easily be removed if that's too much quirkiness.
48 lines
1.9 KiB
OCaml
48 lines
1.9 KiB
OCaml
(* This file is part of the Catala compiler, a specification language for tax
|
|
and social benefits computation rules. Copyright (C) 2022 Inria, contributor:
|
|
Denis Merigoux <denis.merigoux@inria.fr>, Alain Delaët
|
|
<alain.delaet--tixeuil@inria.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. *)
|
|
|
|
(** Generates verification conditions from scope definitions *)
|
|
|
|
open Catala_utils
|
|
open Shared_ast
|
|
|
|
type verification_condition_kind =
|
|
| NoEmptyError
|
|
(** This verification condition checks whether a definition never returns
|
|
an empty error *)
|
|
| NoOverlappingExceptions
|
|
(** This verification condition checks whether a definition never returns
|
|
a conflict error *)
|
|
|
|
type verification_condition = {
|
|
vc_guard : typed Dcalc.Ast.expr;
|
|
(** This expression should have type [bool]*)
|
|
vc_kind : verification_condition_kind;
|
|
vc_asserts : typed Dcalc.Ast.expr;
|
|
(** A conjunction of all assertions in scope of this VC. * This expression
|
|
should have type [bool] *)
|
|
vc_scope : ScopeName.t;
|
|
vc_variable : typed Dcalc.Ast.expr Var.t Mark.pos;
|
|
}
|
|
|
|
val generate_verification_conditions :
|
|
typed Dcalc.Ast.program -> ScopeName.t option -> verification_condition list
|
|
(** [generate_verification_conditions p None] will generate the verification
|
|
conditions for all the variables of all the scopes of the program [p], while
|
|
[generate_verification_conditions p (Some s)] will focus only on the
|
|
variables of scope [s]. *)
|