Skip to content

Commit

Permalink
Merge pull request #129 from jad-hamza/no-view
Browse files Browse the repository at this point in the history
No view
  • Loading branch information
vkuncak authored Feb 23, 2021
2 parents 01999bb + dba5c1f commit 1b17cb4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/scala/inox/ast/GenTreeOps.scala
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ trait GenTreeOps { self =>
val rec = fold(f) _
val Deconstructor(es, _) = e

//Usages of views makes the computation lazy. (which is useful for
//contains-like operations)
f(e, es.view.map(rec))
f(e, es.map(rec))
}


Expand Down

0 comments on commit 1b17cb4

Please sign in to comment.