GithubHelp home page GithubHelp logo

Comments (2)

ranjitjhala avatar ranjitjhala commented on July 23, 2024

Hi @NorfairKing,

Thanks for this example (& sorry for the delay!)

Unfortunately, dropWhile is rather more complicated,
and you can't do it "directly" in this style due to various
current implementation limitations.

  1. The es thing is (I believe) solved in develop ...
    earlier you couldn't have refinements in measures...
  2. The real hassle is that not (Prop (p (head o))) is
    currently not supported, primarily as you cannot
    directly use the higher order predicate p inside
    the specifications. (In general, you can only use
    measures + arithmetic in specifications).

So, instead you need to define "lists whose head satisfies some property p"
which we can do like so:

{-@ data List a <p :: a -> Prop> = Emp
                                 | (:::) { hd :: a<p>
                                         , tl :: List a }
  @-}

After which, dropWhile looks like

{-@ dropWhile :: forall <p :: a -> Prop, w :: a -> Bool -> Prop>.
                   (Witness a p w) =>
                   (x:a -> Bool<w x>) -> List a -> List <p> a
  @-}
dropWhile :: (a -> Bool) -> List a -> List a
dropWhile f (x:::xs)
  | not (f x)    = x ::: xs
  | otherwise    = dropWhile f xs
dropWhile f Emp  = Emp

{-@ bound witness @-}
witness :: Eq a => (a -> Bool) -> (a -> Bool -> Bool) -> a -> Bool -> a -> Bool
witness p w = \ y b v -> (not b) ==> w y b ==> (v == y) ==> p v

The strange Witness thing says that

  • IF predicate f x returns a Bool that is False
  • THEN then x satisfies the predicate p

We then have that the output of dropWhile has a head that satisfies p,
after which the rest follows.

In short: this is rather clunky It would be much nicer to support a spec
like yours; and perhaps we can figure out how to get there...

See this for details

from liquidhaskell-tutorial.

NorfairKing avatar NorfairKing commented on July 23, 2024

Thank you for the response!

from liquidhaskell-tutorial.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.