packages feed

structural-induction 0.2.0.1 → 0.3

raw patch · 3 files changed

+7/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Induction/Structural/Types.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE TemplateHaskell, FlexibleContexts #-}+{-# LANGUAGE TemplateHaskell, FlexibleContexts, DeriveFunctor #-} -- | Types module Induction.Structural.Types     (@@ -37,7 +37,7 @@     | Con c [Term c v]     | Fun v [Term c v]     -- ^ Induction on exponential data types yield assumptions with functions-  deriving (Eq,Ord)+  deriving (Eq,Ord,Functor)  -- Typed variables are represented as (v,t) @@ -80,6 +80,7 @@     , conclusion :: Predicate c v     -- ^ The induction conclusion     }+    deriving (Functor)  -- | Quantifier lists are represented as tuples of variables and their type. --
changelog view
@@ -1,3 +1,6 @@+structural-induction 0.3 (released 2015-06-30)+	* Add Functor instance for Term and Obligation.+ structural-induction 0.2.0.1 (released 2015-06-10) 	* Add missing test suite files to extra-source-files. 
structural-induction.cabal view
@@ -1,6 +1,6 @@ name:               structural-induction category:           Theorem Provers, Logic-version:            0.2.0.1+version:            0.3 license:            LGPL-3 license-file:       LICENSE author:             Dan Rosén