GithubHelp home page GithubHelp logo

Comments (2)

ranjitjhala avatar ranjitjhala commented on June 28, 2024

from liquidhaskell-tutorial.

hafizhmakmur avatar hafizhmakmur commented on June 28, 2024

Thank you very much! That blog is a very invaluable resource that I can ever find for this tutorial. Right now I'm skimming those articles to augment my understanding of LH. I think Abstract and Bounded Refinement Types would made a very good tutorial for next chapters.

For now I think I've found in that blog the solution for most of the problems I ask in prior question just like problem about inline, about aforementioned termination metrics, etc. I also found a solution that works for matFromList for me but I am not able to figure out how to use this template

matFromList      :: [[a]] -> Maybe (Matrix a)
matFromList []   = Nothing
matFromList xss@(xs:_)
  | ok           = Just (M r c vs)
  | otherwise    = Nothing
  where
    r            = size xss
    c            = size xs
    ok           = undefined
    vs           = undefined

and instead just remake the function from zero resulting in this

{-@ matFromList      :: x:[[a]] 
                        -> Maybe (MatrixN a {size x} {sizeFirstIdx x}) @-}
matFromList      :: [[a]] -> Maybe (Matrix a)
matFromList []   = Nothing
matFromList [[]] = Nothing
matFromList [xs] = Just (M 1 (size xs) (vecFromList [vecFromList xs]))
matFromList (xs:xss) = case matFromList xss of
    Just (M row col elts) 
        | col == size xs -> Just (M (row+1) col (vecFromList xs `vCons` elts)) 
        | otherwise -> Nothing
    Nothing -> Nothing

which I think is more elegant for me, but I still like to know the intended solution using that template.

Unfortunately I am still stumped in the lemma problem, hence the 3 problems in Chapter 8 (range), Chapter 10 (fresh) and Chapter 12 (insertAPI & deleteAPI. member is solved because it's just modification of mem from Chapter 10) is still unsolved for me. Would you like to give me another hint or clue for these? I'd really like to be able to figure out the answer after all this time.

Once again thank you @ranjitjhala ! May your work prosper and this software be better and better.

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.