2022-01-18 17:13:16 +03:00
|
|
|
(* 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 *)
|
|
|
|
|
2022-11-21 12:46:17 +03:00
|
|
|
open Catala_utils
|
2022-08-12 18:59:49 +03:00
|
|
|
open Shared_ast
|
2022-07-28 11:36:36 +03:00
|
|
|
|
2022-01-18 17:13:16 +03:00
|
|
|
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 *)
|
|
|
|
|
2022-07-12 16:57:50 +03:00
|
|
|
type verification_condition = {
|
2022-08-25 17:35:08 +03:00
|
|
|
vc_guard : typed Dcalc.Ast.expr;
|
2022-01-18 17:13:16 +03:00
|
|
|
(** This expression should have type [bool]*)
|
|
|
|
vc_kind : verification_condition_kind;
|
2022-11-08 22:48:43 +03:00
|
|
|
vc_asserts : typed Dcalc.Ast.expr;
|
|
|
|
(** A conjunction of all assertions in scope of this VC. * This expression
|
|
|
|
should have type [bool] *)
|
2022-08-12 23:42:39 +03:00
|
|
|
vc_scope : ScopeName.t;
|
2022-08-25 20:46:13 +03:00
|
|
|
vc_variable : typed Dcalc.Ast.expr Var.t Marked.pos;
|
2022-01-18 17:13:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
val generate_verification_conditions :
|
2022-07-12 16:57:50 +03:00
|
|
|
typed Dcalc.Ast.program -> ScopeName.t option -> verification_condition list
|
2022-03-17 19:44:24 +03:00
|
|
|
(** [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]. *)
|