Skip to content

Commit

Permalink
(dtw_synth - remove unnecessary constraint on the number of portions)
Browse files Browse the repository at this point in the history
Ignore-this: c25e19c393c56f00e9fc8e98d27e43e

darcs-hash:20140213024959-3a4db-1ef5ae2a936193c646d8a0642ea9b95eeb4f8ff6
  • Loading branch information
MattShannon committed Feb 13, 2014
1 parent eb6ba24 commit d0113b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/dtw_synth
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ def main(rawArgs):
int(paramOrderStr)
for paramOrderStr in args.paramOrders.split(',')
]
assert len(paramOrders) == 3
assert paramOrders
mgcParamOrder = paramOrders[0]

exts = args.exts.split(',')
assert len(exts) == 3
assert len(exts) == len(paramOrders)
mgcExt = exts[0]

minCostTot = 0.0
Expand Down

0 comments on commit d0113b2

Please sign in to comment.