Skip to content
Snippets Groups Projects
cool-testsuite.ml 2.09 KiB
Newer Older
  • Learn to ignore specific revisions
  • open CoolUtils
    open Testsuite
    module CF = CoAlgFormula
    module CR = CoAlgReasoner
    module CM = CoAlgMisc
    module L = List
    
    let k   = [| (CM.MultiModalK,  [0]) |]
    let kd  = [| (CM.MultiModalKD, [0]) |]
    let cl  = [| (CM.CoalitionLogic, [0]) |]
    let gml = [| (CM.GML, [0]) |]
    
    
    let k_testcases: satCheck list =
        let c a b = (a,k,b) in
        [ c Sat   "True"
        ; c Unsat "False"
        ; c ParseError  "{Fsdf"
        (*; c ParseError  "Fsdf}" *)
    
    Thorsten Wißmann's avatar
    Thorsten Wißmann committed
        ; c Unsat "<R> True & [R] False"
        ; c Unsat "C |- <R> ~C"
        ; c Sat   "C |- [R] ~C"
        ]
    
    
    
    let nominal_testcases =
        let c a b = (a,k,b) in
        [ c Sat "@ i' <r> p"
        ; c Sat "@ i' <r>  i'"
        ; c Unsat "@ i' <r>  i' & @i' [r] ~ i'"
        ; c Sat "@ i' [r] (@ i' (~i')) "
        ]
    
    
    Thorsten Wißmann's avatar
    Thorsten Wißmann committed
    let kd_testcases =
        let c a b = (a,kd,b) in
        [ c Sat   "True"
        ; c Unsat "False"
        ; c ParseError  "{Fsdf"
        (*; c ParseError  "Fsdf}" *)
        ; c Unsat "<R> True & [R] False"
        ; c Unsat "C |- <R> ~C"
        ; c Unsat "C |- [R] ~C"
        ]
    
    
    Thorsten Wißmann's avatar
    Thorsten Wißmann committed
    let cl_testcases =
        let c a b = (a,cl,b) in
        [ c Unsat "[{1}] C & [{ 2 }] ~C"
        ; c Sat   "[{1}] C & <{ 2 }> ~C"
        ; c Unsat "[{1}] C & <{ 1 2 }> ~C"
        ; c Sat   "<{ 1 2 }> C & <{ 1 2 }> ~C"
        ; c Unsat "<{ 1 2 }> C & [{ 1 2 }] ~C"
        ; c Sat   "([{1 3}] C) & ([{ 2 3 }] ~C )"
        ]
    
    
    Thorsten Wißmann's avatar
    Thorsten Wißmann committed
    let testcases =
        let c name table = (name,table) in
        [ c "K"  k_testcases
    
        ; c "Nominals" nominal_testcases
    
    Thorsten Wißmann's avatar
    Thorsten Wißmann committed
        ; c "KD" kd_testcases
    
    Thorsten Wißmann's avatar
    Thorsten Wißmann committed
        ; c "CL" cl_testcases
    
    let main =
    
        let success = ref 0 in
        let failed = ref 0 in
    
    Thorsten Wißmann's avatar
    Thorsten Wißmann committed
        foreach_l testcases (fun (name,table) ->
    
            Printf.printf "==== Testing %s ====\n" name;
            foreach_l table (fun sc ->
                let (expected,_,_) = sc in
                let actual = runSatCheckVerbose sc in
                (* compare the expected and the actual result *)
                if actual = expected
                then success := !success + 1
                else failed := !failed + 1
            );
            Printf.printf "\n"
        );
        let s n = if n = 1 then "testcase" else "testcases" in
        Printf.printf "=> %d %s succeeded, %d %s failed.\n"
            !success (s !success)
            !failed (s !failed)