Skip to content

Commit

Permalink
fix tab use
Browse files Browse the repository at this point in the history
  • Loading branch information
William Darling committed Apr 15, 2016
1 parent cb598f8 commit 5546513
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/CNTK/BrainScript/CNTKCoreLib/CNTK.core.bs
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@ Sequences = [
selected = Loop._IsWithin (DelayFn, N, x)
out = Gather (selected, x)
].out
# Last and TakeRight
Last(x) = TakeRight(1, x)
TakeRight (N, x) = _Take (FutureValue, N, x)
# Last and TakeRight
Last(x) = TakeRight(1, x)
TakeRight (N, x) = _Take (FutureValue, N, x)
Skip (N, x) = if N > 0 then _Skip (PastValue, N, x) else x
_Skip (DelayFn, N, x) = [ // TODO: merge with _Take
selected = Loop._IsWithin (DelayFn, N, x)
Expand Down

0 comments on commit 5546513

Please sign in to comment.