summaryrefslogtreecommitdiff
path: root/source/Meaning.hs
diff options
context:
space:
mode:
authorSimon-Kor <52245124+Simon-Kor@users.noreply.github.com>2024-08-26 16:55:39 +0200
committerSimon-Kor <52245124+Simon-Kor@users.noreply.github.com>2024-08-26 16:55:39 +0200
commita253d06a0755c41dd321fc2e235c3332de63a8c7 (patch)
tree495156e3c02735435e5a70ef5d2f70074b6598e1 /source/Meaning.hs
parentd79c85d70fc907858e3af5715bb94e8fdc202155 (diff)
Non finished attemped to translate a local
function defintion from abstract to internal
Diffstat (limited to 'source/Meaning.hs')
-rw-r--r--source/Meaning.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/source/Meaning.hs b/source/Meaning.hs
index 834d8a6..30e13f8 100644
--- a/source/Meaning.hs
+++ b/source/Meaning.hs
@@ -605,9 +605,24 @@ glossProof = \case
if domVar == argVar
then Sem.DefineFunction funVar argVar <$> glossExpr valueExpr <*> glossExpr domExpr <*> glossProof proof
else error "mismatched variables in function definition."
+
+ Raw.DefineFunctionMathy funVar domVar ranVar funVar2 argVar definitions proof -> do
+ if funVar /= funVar2
+ then error "missmatched function names"
+ else Sem.DefineFunctionMathy funVar domVar ranVar argVar <*> glossLocalFunctionExprEach definitions <*> glossProof proof
Raw.Calc calc proof ->
Sem.Calc <$> glossCalc calc <*> glossProof proof
+glossLocalFunctionExprEach :: NonEmpty [(Raw.Expr, Raw.Formula)]-> Gloss [(Sem.Term, Sem.Formula)]
+glossLocalFunctionExprEach def = pure ( glossLocalFunctionExpr `each` def )
+
+glossLocalFunctionExpr :: (Raw.Expr, Raw.Formula) -> Gloss (Sem.Term, Sem.Formula)
+glossLocalFunctionExpr (definingExpression, localDomain) = do
+ e <- glossExpr definingExpression
+ d <- glossFormula localDomain
+ pure (e,d)
+
+
glossCase :: Raw.Case -> Gloss Sem.Case
glossCase (Raw.Case caseOf proof) = Sem.Case <$> glossStmt caseOf <*> glossProof proof