summaryrefslogtreecommitdiff
path: root/source/Checking.hs
diff options
context:
space:
mode:
Diffstat (limited to 'source/Checking.hs')
-rw-r--r--source/Checking.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Checking.hs b/source/Checking.hs
index 6d55ee1..7362c93 100644
--- a/source/Checking.hs
+++ b/source/Checking.hs
@@ -564,11 +564,11 @@ checkProof = \case
checkProof continue
--- | Makes a conjunction of all the subdomain statments
+-- | Makes a conjunction of all the subdomain statments <- this has to be checked!!!! TODO!!!!!!
subdomainConjuctionLocalFunction :: VarSymbol -> NonEmpty (Term, Formula) -> Formula
-subdomainConjuctionLocalFunction argVar defintions =
+subdomainConjuctionLocalFunction _ defintions =
let stmts = [snd x | x <- NonEmpty.toList defintions]
- in TermVar argVar `IsElementOf` makeConjunction stmts
+ in makeDisjunction stmts
functionSubdomianExpression :: VarSymbol -> VarSymbol -> [(Term, Formula)] -> [Asm]