Skip to content

Commit

Permalink
fixed bug in late
Browse files Browse the repository at this point in the history
  • Loading branch information
dktr0 committed Sep 30, 2024
1 parent d2992b6 commit d2ddc36
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions punctual.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Signal.purs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ fast :: Signal -> Signal -> Signal
fast x = Slow (Division Pairwise (Constant 1.0) x)

late :: Signal -> Signal -> Signal
late x = Early (Division Pairwise (Constant 1.0) x)
late x = Early (Difference Pairwise (Constant 0.0) x)

type SignalInfo = {
webcam :: Disj Boolean,
Expand Down

0 comments on commit d2ddc36

Please sign in to comment.