code-conjure-0.7.2: src/Conjure/Defn.hs
-- |
-- Module : Conjure.Defn
-- Copyright : (c) 2021-2025 Rudy Matela
-- License : 3-Clause BSD (see the file LICENSE)
-- Maintainer : Rudy Matela <rudy@matela.com.br>
--
-- This module is part of "Conjure".
--
-- This module exports the 'Defn' type synonym and utilities involving it.
--
-- You are probably better off importing "Conjure".
{-# LANGUAGE TupleSections #-}
module Conjure.Defn
( Defn
, Bndn
, toDynamicWithDefn
, devaluate
, deval
, devl
, devalFast
, showDefn
, printDefn
, defnApparentlyTerminates
, isCompleteDefn
, isCompleteBndn
, canonicalizeBndn
, canonicalizeBndnLast
, hasUnbound
, noUnbound
, isUndefined
, isDefined
, isBaseCase
, isRecursiveCase
, isRecursiveDefn
, caneta
, etaReduce
, module Conjure.Expr
)
where
import Conjure.Utils
import Conjure.Expr
import Data.Express.Utils.Typeable (boolTy, orderingTy)
import Data.Express.Utils.String (isInfix)
import Data.Dynamic
-- import Control.Applicative ((<$>)) -- for older GHCs
-- | A function definition as a list of top-level case bindings ('Bndn').
--
-- Here is an example using the notation from "Data.Express.Fixtures":
--
-- > sumV :: Expr
-- > sumV = var "sum" (undefined :: [Int] -> Int)
-- >
-- > (=-) = (,)
-- > infixr 0 =-
-- >
-- > sumDefn :: Defn
-- > sumDefn = [ sum' nil =- zero
-- > , sum' (xx -:- xxs) =- xx -+- (sumV :$ xxs)
-- > ] where sum' e = sumV :$ e
type Defn = [Bndn]
-- | A single binding in a definition ('Defn').
type Bndn = (Expr,Expr)
-- | Pretty-prints a 'Defn' as a 'String':
--
-- > > putStr $ showDefn sumDefn
-- > sum [] = 0
-- > sum (x:xs) = x + sum xs
showDefn :: Defn -> String
showDefn = unlines . map show1
where
show1 (lhs,rhs) =
case rhs of
(Value "|" _ :$ c :$ t :$ e) -> showExpr lhs
++ "\n | " ++ showExpr c ++ " = " ++ showExpr t
++ "\n | otherwise = " ++ showExpr e
(Value "if" _ :$ c :$ t :$ e) -> lhseqs ++ "if " ++ showExpr c
++ "\n" ++ spaces ++ "then " ++ showExpr t
++ "\n" ++ spaces ++ "else " ++ showExpr e
(Value "case" _ :$ ep :$ ex :$ ey)
| typ ep == boolTy -> lhseqs ++ "case " ++ showExpr ep ++ " of"
++ "\n" ++ spaces ++ "False -> " ++ showExpr ex
++ "\n" ++ spaces ++ "True -> " ++ showExpr ey
(Value "case" _ :$ eo :$ ex :$ ey :$ ez)
| typ eo == orderingTy -> lhseqs ++ "case " ++ showExpr eo ++ " of"
++ "\n" ++ spaces ++ "LT -> " ++ showExpr ex
++ "\n" ++ spaces ++ "EQ -> " ++ showExpr ey
++ "\n" ++ spaces ++ "GT -> " ++ showExpr ez
_ -> lhseqs ++ showExpr rhs
where
lhseqs = showExpr lhs ++ " = "
spaces = map (const ' ') lhseqs
-- | Pretty-prints a 'Defn' to the screen.
--
-- > > printDefn sumDefn
-- > sum [] = 0
-- > sum (x:xs) = x + sum xs
printDefn :: Defn -> IO ()
printDefn = putStr . showDefn
type Memo = [(Expr, Maybe Dynamic)]
-- | Evaluates an 'Expr' to a 'Dynamic' value
-- using the given 'Defn' as definition
-- when a recursive call is found.
--
-- Arguments:
--
-- 1. a function that deeply reencodes an expression (cf. 'expr')
-- 2. the maximum number of recursive evaluations
-- 3. a 'Defn' to be used when evaluating the given 'Expr'
-- 4. an 'Expr' to be evaluated
--
-- This function cannot be used to evaluate a functional value for the given 'Defn'
-- and can only be used when occurrences of the given 'Defn' are fully applied.
--
-- The function the deeply reencodes an 'Expr' can be defined using
-- functionality present in "Conjure.Conjurable". Here's a quick-and-dirty version
-- that is able to reencode 'Bool's, 'Int's and their lists:
--
-- > exprExpr :: Expr -> Expr
-- > exprExpr = conjureExpress (undefined :: Bool -> [Bool] -> Int -> [Int] -> ())
--
-- The maximum number of recursive evaluations counts in two ways:
--
-- 1. the maximum number of entries in the recursive-evaluation memo table;
-- 2. the maximum number of terminal values considered (but in this case the
-- limit is multiplied by the _size_ of the given 'Defn'.
--
-- These could be divided into two separate parameters but
-- then there would be an extra _dial_ to care about...
--
-- (cf. 'devaluate', 'deval', 'devl')
toDynamicWithDefn :: (Expr -> Expr) -> Int -> Defn -> Expr -> Maybe Dynamic
toDynamicWithDefn exprExpr mx cx = fmap (\(_,_,d) -> d) . re (mx * sum (map (size . snd) cx)) []
where
(ef':_) = unfoldApp . fst $ head cx
-- recursively evaluate an expression, the entry point
re :: Int -> Memo -> Expr -> Maybe (Int, Memo, Dynamic)
re n m _ | length m > mx = err "recursion limit reached"
re n m _ | n <= 0 = err "evaluation limit reached"
re n m (Value "if" _ :$ ec :$ ex :$ ey) = case rev n m ec of
Nothing -> Nothing
Just (n,m,True) -> re n m ex
Just (n,m,False) -> re n m ey
re n m (Value "||" _ :$ ep :$ eq) = case rev n m ep of
Nothing -> Nothing
Just (n,m,True) -> (n,m,) <$> toDynamic (val True)
Just (n,m,False) -> re n m eq
re n m (Value "&&" _ :$ ep :$ eq) = case rev n m ep of
Nothing -> Nothing
Just (n,m,True) -> re n m eq
Just (n,m,False) -> (n,m,) <$> toDynamic (val False)
re n m e = case unfoldApp e of
[] -> err "empty application unfold" -- should never happen
[e] -> (n-1,m,) <$> toDynamic e
(ef:exs) | ef == ef' -> red n m (foldApp (ef:map exprExpr exs))
| otherwise -> foldl ($$) (re n m ef) exs
-- like 're' but is bound to an actual Haskell value instead of a Dynamic
rev :: Typeable a => Int -> Memo -> Expr -> Maybe (Int, Memo, a)
rev n m e = case re n m e of
Nothing -> Nothing
Just (n,m,d) -> case fromDynamic d of
Nothing -> Nothing
Just x -> Just (n, m, x)
-- evaluates by matching on one of cases of the actual definition
-- should only be used to evaluate an expr of the form:
-- ef' :$ exprExpr ex :$ exprExpr ey :$ ...
red :: Int -> Memo -> Expr -> Maybe (Int, Memo, Dynamic)
red n m e | size e > n = err "argument-size limit reached"
-- prevent recursion into negatives, we fail earlier in these cases
-- we match a non-empty memo table to know that we already have a call stack
-- red n (_:_) e | any isNegative (unfoldApp e) = err "recursion into negatives"
-- the above is not correct, we need to detect which arguments are descending somehow...
red n m e = case lookup e m of
Just Nothing -> err $ "loop detected " ++ show e
Just (Just d) -> Just (n,m,d)
Nothing -> case [re n ((e,Nothing):m) $ e' //- bs | (a',e') <- cx, Just bs <- [e `match` a']] of
[] -> err $ "unhandled pattern " ++ show e
(Nothing:_) -> Nothing
(Just (n,m,d):_) -> Just (n,[(e',if e == e' then Just d else md) | (e',md) <- m],d)
($$) :: Maybe (Int,Memo,Dynamic) -> Expr -> Maybe (Int, Memo, Dynamic)
Just (n,m,d1) $$ e2 = case re n m e2 of
Nothing -> Nothing
Just (n', m', d2) -> (n',m',) <$> dynApply d1 d2
_ $$ _ = Nothing
err msg = -- trace (m ++ " for:\n" ++ showDefn cx)
error m where m = "Conjure.Defn.toDynamicWithDefn: " ++ msg
-- | Evaluates an 'Expr' expression into 'Just' a regular Haskell value
-- using a 'Defn' definition when it is found.
-- If there's a type-mismatch, this function returns 'Nothing'.
--
-- This function requires a 'Expr'-deep-reencoding function
-- and a limit to the number of recursive evaluations.
--
-- (cf. 'toDynamicWithDefn', 'deval', 'devl')
devaluate :: Typeable a => (Expr -> Expr) -> Int -> Defn -> Expr -> Maybe a
devaluate ee n fxpr e = toDynamicWithDefn ee n fxpr e >>= fromDynamic
-- | Evaluates an 'Expr' expression into a regular Haskell value
-- using a 'Defn' definition when it is found in the given expression.
-- If there's a type-mismatch, this function return a default value.
--
-- This function requires a 'Expr'-deep-reencoding function
-- and a limit to the number of recursive evaluations.
--
-- (cf. 'toDynamicWithDefn', 'devaluate', devl')
deval :: Typeable a => (Expr -> Expr) -> Int -> Defn -> a -> Expr -> a
deval ee n fxpr x = fromMaybe x . devaluate ee n fxpr
-- | Like 'deval' but only works for when the given 'Defn' definition
-- has no case breakdowns.
--
-- In other words, this only works when the given 'Defn' is a singleton list
-- whose first value of the only element is a simple application without
-- constructors.
--
-- TODO: remove this from the interface?
devalFast :: Typeable a => (Expr -> Expr) -> Int -> Defn -> a -> Expr -> a
devalFast _ n [defn] x = reval defn n x
devalFast _ _ _ _ = error "Conjure.Defn.devalFast: only works for singleton definitions"
-- | Evaluates an 'Expr' expression into a regular Haskell value
-- using a 'Defn' definition when it is found in the given expression.
-- If there's a type-mismatch, this raises an error.
--
-- This function requires a 'Expr'-deep-reencoding function
-- and a limit to the number of recursive evaluations.
--
-- (cf. 'toDynamicWithDefn', 'devaluate', deval')
devl :: Typeable a => (Expr -> Expr) -> Int -> Defn -> Expr -> a
devl ee n fxpr = deval ee n fxpr (error "Conjure.Defn.devl: incorrect type?")
-- | Returns whether the given definition 'apparentlyTerminates'.
defnApparentlyTerminates :: Defn -> Bool
defnApparentlyTerminates [(efxs, e)] = apparentlyTerminates efxs e
defnApparentlyTerminates _ = True
-- | Returns whether the definition is complete,
-- i.e., whether it does not have any holes in the RHS.
isCompleteDefn :: Defn -> Bool
isCompleteDefn = all isCompleteBndn
-- | Returns whether the binding is complete,
-- i.e., whether it does not have any holes in the RHS.
isCompleteBndn :: Bndn -> Bool
isCompleteBndn (_,rhs) = isComplete rhs
canonicalizeBndn :: Bndn -> Bndn
canonicalizeBndn = unfoldPair . canonicalize . foldPair
canonicalizeBndnLast :: Int -> Bndn -> Bndn
canonicalizeBndnLast i (lhs,rhs) = (updateAppAt i (const ex') lhs', rhs')
where
(lhs_, ex) = extractApp i lhs
(lhs', ex', rhs') = unfoldTrio . canonicalize . foldTrio $ (lhs_, ex, rhs)
-- | Returns whether a binding has undefined variables,
-- i.e.,
-- there are variables in the RHS that are not declared in the LHS.
--
-- > > hasUnbound (xx -:- xxs, xxs)
-- > False
--
-- > > hasUnbound (xx -:- xxs, yys)
-- > True
--
-- For 'Defn's, use 'isUndefined'.
hasUnbound :: Bndn -> Bool
hasUnbound = not . noUnbound
noUnbound :: Bndn -> Bool
noUnbound (lhs,rhs) = all (`elem` nubVars lhs) (vars rhs)
-- | Returns whether a 'Defn' has undefined variables,
-- i.e.,
-- there are variables in the RHSs that are not declared in the LHSs.
--
-- > > isUndefined [(nil, nil), (xx -:- xxs, xxs)]
-- > False
--
-- > > isUndefined [(nil, xxs), (xx -:- xxs, yys)]
-- > True
--
-- For single 'Bndn's, use 'hasUnbound'.
isUndefined :: Defn -> Bool
isUndefined = any hasUnbound
isDefined :: Defn -> Bool
isDefined = not . isUndefined
-- | Returns whether a binding is a base case.
--
-- > > isBaseCase (ff (xx -:- nil), xx)
-- > True
--
-- > > isBaseCase (ff (xx -:- xxs), ff xxs)
-- > False
--
-- (cf. 'isRecursiveCase')
isBaseCase :: Bndn -> Bool
isBaseCase (lhs,rhs) = f `notElem` values rhs
where
(f:_) = unfoldApp lhs
-- | Returns whether a binding is a base case.
--
-- > > isRecursiveCase (ff (xx -:- nil), xx)
-- > False
--
-- > > isRecursiveCase (ff (xx -:- xxs), ff xxs)
-- > True
--
-- (cf. 'isBaseCase')
isRecursiveCase :: Bndn -> Bool
isRecursiveCase (lhs,rhs) = f `elem` values rhs
where
(f:_) = unfoldApp lhs
-- | Returns whether a definition is recursive
isRecursiveDefn :: Defn -> Bool
isRecursiveDefn = any isRecursiveCase
-- | Returns whether eta-reduction is possible in the given 'Bndn'
--
-- This says 'False' to some cases that are eta-reducible but would yield ugly results
caneta :: Bndn -> Bool
caneta (_, Value "if" _ :$ _ :$ _ :$ _) = False
caneta (_, Value "|" _ :$ _ :$ _ :$ _) = False
caneta (_, Value "case" _ :$ _ :$ _ :$ _ :$ _) = False
caneta (Value (_:s) _ :$ _ :$ _, _) | isInfix s = False
caneta (_, Value s _ :$ _ :$ _) | isInfix s = False
caneta (elf :$ elx, erf :$ erx) = elx == erx && erx `notElem` values erf
caneta _ = False
-- | When possible, performs eta-reduction in the given definition
etaReduce :: Defn -> Defn
etaReduce = try
where
try d
| all caneta d = try $ map reduce d
| otherwise = d
reduce (lhs :$ _, rhs :$ _) = (lhs, rhs)
reduce _ = error "Conjure.Defn.etaReduce: the impossible happened, this is a bug"