package frama-c
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  Platform dedicated to the analysis of source code written in C
Install
    
    dune-project
 Dependency
Authors
- 
  
    
    MMichele Alberti
- 
  
    
    TThibaud Antignac
- 
  
    
    GGergö Barany
- 
  
    
    PPatrick Baudin
- 
  
    
    TThibaut Benjamin
- 
  
    
    AAllan Blanchard
- 
  
    
    LLionel Blatter
- 
  
    
    FFrançois Bobot
- 
  
    
    RRichard Bonichon
- 
  
    
    QQuentin Bouillaguet
- 
  
    
    DDavid Bühler
- 
  
    
    ZZakaria Chihani
- 
  
    
    LLoïc Correnson
- 
  
    
    JJulien Crétin
- 
  
    
    PPascal Cuoq
- 
  
    
    ZZaynah Dargaye
- 
  
    
    BBasile Desloges
- 
  
    
    JJean-Christophe Filliâtre
- 
  
    
    PPhilippe Herrmann
- 
  
    
    MMaxime Jacquemin
- 
  
    
    FFlorent Kirchner
- 
  
    
    AAlexander Kogtenkov
- 
  
    
    TTristan Le Gall
- 
  
    
    JJean-Christophe Léchenet
- 
  
    
    MMatthieu Lemerre
- 
  
    
    DDara Ly
- 
  
    
    DDavid Maison
- 
  
    
    CClaude Marché
- 
  
    
    AAndré Maroneze
- 
  
    
    TThibault Martin
- 
  
    
    FFonenantsoa Maurica
- 
  
    
    MMelody Méaulle
- 
  
    
    BBenjamin Monate
- 
  
    
    YYannick Moy
- 
  
    
    AAnne Pacalet
- 
  
    
    VValentin Perrelle
- 
  
    
    GGuillaume Petiot
- 
  
    
    DDario Pinto
- 
  
    
    VVirgile Prevosto
- 
  
    
    AArmand Puccetti
- 
  
    
    FFélix Ridoux
- 
  
    
    VVirgile Robles
- 
  
    
    MMuriel Roger
- 
  
    
    JJulien Signoles
- 
  
    
    NNicolas Stouls
- 
  
    
    KKostyantyn Vorobyov
- 
  
    
    BBoris Yakobowski
Maintainers
Sources
  
    
      frama-c-27.0-beta-Cobalt.tar.gz
    
    
        
    
  
  
  
    
  
        sha256=9c1b14a689ac8ccda9e827c2eede13bb8d781fb8e4e33c1b5360408e312127d2
    
    
  doc/src/frama-c-wp.core/TacNormalForm.ml.html
Source file TacNormalForm.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99(**************************************************************************) (* *) (* This file is part of WP plug-in of Frama-C. *) (* *) (* Copyright (C) 2007-2023 *) (* CEA (Commissariat a l'energie atomique et aux energies *) (* alternatives) *) (* *) (* you can redistribute it and/or modify it under the terms of the GNU *) (* Lesser General Public License as published by the Free Software *) (* Foundation, version 2.1. *) (* *) (* It is distributed in the hope that it will be useful, *) (* but WITHOUT ANY WARRANTY; without even the implied warranty of *) (* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *) (* GNU Lesser General Public License for more details. *) (* *) (* See the GNU Lesser General Public License version 2.1 *) (* for more details (enclosed in the file licenses/LGPLv2.1). *) (* *) (**************************************************************************) open Lang open Conditions open Tactical (** Useful **) let str_case = "Case" let sub_cases phi = function | [] -> List.map (fun t -> phi str_case (F.p_bool t)) | [descr] -> List.map (fun t -> phi descr (F.p_bool t)) | infos -> List.map2 (fun info t -> phi info (F.p_bool t)) infos (* split into n sequents: [hyps] |- [subcases]_i *) let f_replace_goal infos subcases (hyps,_) = let sub_case descr p = descr, (hyps,p) in sub_cases sub_case infos subcases (* split into n sequents: [subcases]_i, hyps/[hyp] |- goal in fact, [hyp] is replaced by [subcases]_i *) let f_replace_hyp hyp infos subcases sequent = let sub_case descr p = descr, Conditions.(replace ~at:hyp.id (update_cond hyp ~descr (When p)) sequent) in sub_cases sub_case infos subcases (* -------------------------------------------------------------------------- *) (* --- FNC (goal) and FND (hyp) tacticals --- *) (* -------------------------------------------------------------------------- *) let nf_conj_args e = match F.repr e with | Qed.Logic.And xs -> xs | _ -> [e] let nf_disj_args e = match F.repr e with | Qed.Logic.Or xs -> xs | _ -> [e] let f_nf_goal e ~depth = f_replace_goal ["CNF"] (nf_conj_args (WpTac.e_cnf ~depth e)) let f_nf_hyp s e ~depth = f_replace_hyp s ["DNF"] (nf_disj_args (WpTac.e_dnf ~depth e)) let match_selection = function | Clause(Goal p) -> let e = Lang.F.e_prop p in if WpTac.is_cnf e then None else Some (true, e, f_nf_goal e) | Clause(Step s) -> begin match s.condition with | (Type p | Have p | When p | Core p | Init p) -> let e = Lang.F.e_prop p in if WpTac.is_dnf e then None else Some (false, e, f_nf_hyp s e) | _ -> None end | Inside(_,_) | Compose _ | Empty | Multi _ -> None class normal_form = object inherit Tactical.make ~id:"Wp.normal_form" ~title:"Intuition" ~descr:"Decompose with Conjunctive/Disjunctive Normal Form" ~params:[] method select feedback (s : Tactical.selection) = match match_selection s with | Some (pol,_,continuation) -> feedback#set_title (if pol then "Intuition (CNF)" else "Intuition (DNF)") ; let depth = (-1) in Applicable (continuation ~depth) | _ -> Not_applicable end let tactical = Tactical.export (new normal_form) let strategy = Strategy.make tactical ~arguments:[] (* -------------------------------------------------------------------------- *)
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >