Skip to content

Commit a78b988

Browse files
Remove --no-lazy-ple
1 parent f6c97e6 commit a78b988

File tree

5 files changed

+1
-9
lines changed

5 files changed

+1
-9
lines changed

liquidhaskell-boot/src/Language/Haskell/Liquid/Constraint/ToFixpoint.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ fixConfig tgt cfg = def
6363
, FC.extensionality = extensionality cfg
6464
, FC.interpreter = interpreter cfg
6565
, FC.rwTermination = rwTerminationCheck cfg
66-
, FC.noLazyPLE = noLazyPLE cfg
6766
, FC.fuel = fuel cfg
6867
, FC.noEnvReduction = not (environmentReduction cfg)
6968
, FC.inlineANFBinds = inlineANFBindings cfg

liquidhaskell-boot/src/Language/Haskell/Liquid/UX/CmdLine.hs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -374,11 +374,6 @@ defConfig = Config {
374374
= False
375375
&= name "skip-module"
376376
&= help "Completely skip this module, don't even compile any specifications in it."
377-
,
378-
noLazyPLE
379-
= False
380-
&= name "no-lazy-ple"
381-
&= help "Don't use Lazy PLE"
382377

383378
, fuel
384379
= Nothing

liquidhaskell-boot/src/Language/Haskell/Liquid/UX/Config.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ data Config = Config
103103
, auxInline :: Bool -- ^
104104
, rwTerminationCheck :: Bool -- ^ Enable termination checking for rewriting
105105
, skipModule :: Bool -- ^ Skip this module entirely (don't even compile any specs in it)
106-
, noLazyPLE :: Bool
107106
, fuel :: Maybe Int -- ^ Maximum PLE "fuel" (unfold depth) (default=infinite)
108107
, environmentReduction :: Bool -- ^ Perform environment reduction
109108
, noEnvironmentReduction :: Bool -- ^ Don't perform environment reduction

tests/benchmarks/sf/Lists.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{-@ LIQUID "--reflection" @-}
22
{-@ LIQUID "--ple" @-}
3-
{-@ LIQUID "--no-lazy-ple" @-}
43

54
module Lists where
65

0 commit comments

Comments
 (0)