Skip to content

Commit

Permalink
Merge pull request #272 from tremblap/NMFCross-Polyphony-odd
Browse files Browse the repository at this point in the history
NMFCross: fix polyphony's default value not being odd as requested
  • Loading branch information
tremblap authored Oct 10, 2024
2 parents abc0bd7 + d3047b4 commit d44b5ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/clients/nrt/NMFCrossClient.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ constexpr auto NMFCrossParams = defineParameters(
InputBufferParam("target", "Target Buffer"),
BufferParam("output", "Output Buffer"),
LongParam("timeSparsity", "Time Sparsity", 7, Min(1), Odd()),
LongParam("polyphony", "Polyphony", 10, Min(1), Odd(),
LongParam("polyphony", "Polyphony", 11, Min(1), Odd(),
FrameSizeUpperLimit<kFFT>()),
LongParam("continuity", "Continuity", 7, Min(1), Odd()),
LongParam("iterations", "Number of Iterations", 50, Min(1)),
Expand Down

0 comments on commit d44b5ea

Please sign in to comment.