Skip to content

Commit

Permalink
Delete unused num_fold constant
Browse files Browse the repository at this point in the history
  • Loading branch information
mn200 committed Nov 27, 2017
1 parent 104e553 commit b9175c0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions misc/lem_lib_stub/lib.lem
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ val all2 : forall 'a 'b. ('a -> 'b -> bool) -> list 'a -> list 'b -> bool

declare hol target_rep function all2 = `EVERY2`

val num_fold : forall 'a. ('a -> 'a) -> 'a -> nat -> 'a
let rec num_fold f a n = if n = 0 then a else num_fold f (f a) (n-1)
declare termination_argument num_fold = automatic

let rec the _ (Just x) = x and the x Nothing = x

val fapply : forall 'a 'b. MapKeyType 'b => 'a -> 'b -> Map.map 'b 'a -> 'a
Expand Down

0 comments on commit b9175c0

Please sign in to comment.