Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
LeventErkok committed Sep 12, 2024
1 parent 51b6f3c commit e603d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Data/SBV/Core/Operations.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ noCharLift2 x y = error $ "Unexpected binary operation called on chars: " ++ sho
noStringLift2 :: String -> String -> a
noStringLift2 x y = error $ "Unexpected binary operation called on strings: " ++ show (x, y)

liftSym1 :: (State -> Kind -> SV -> IO SV) -> (AlgReal -> AlgReal) -> (Integer -> Integer) -> (Float -> Float) -> (Double -> Double) -> (FP -> FP) ->(Rational -> Rational) -> SVal -> SVal
liftSym1 :: (State -> Kind -> SV -> IO SV) -> (AlgReal -> AlgReal) -> (Integer -> Integer) -> (Float -> Float) -> (Double -> Double) -> (FP -> FP) -> (Rational -> Rational) -> SVal -> SVal
liftSym1 _ opCR opCI opCF opCD opFP opRA (SVal k (Left a)) = SVal k . Left $! mapCV opCR opCI opCF opCD opFP opRA noCharLift noStringLift noUnint a
liftSym1 opS _ _ _ _ _ _ a@(SVal k _) = SVal k $ Right $ cache c
where c st = do sva <- svToSV st a
Expand Down

0 comments on commit e603d6a

Please sign in to comment.