# HG changeset patch # User Chris Cannam # Date 1401882646 -3600 # Node ID ce8118644f162bab6fbdaef4ebf7af9d33380fd0 # Parent 5c2f0cec3565b3e879a3e75a080d5295054dbca2 Restore more theoretically agent-friendly instrument settings diff -r 5c2f0cec3565 -r ce8118644f16 src/Instruments.cpp --- a/src/Instruments.cpp Wed Jun 04 12:48:52 2014 +0100 +++ b/src/Instruments.cpp Wed Jun 04 12:50:46 2014 +0100 @@ -153,17 +153,15 @@ t.highestNote, simpleInstruments[i], tt); -// instr.pitchSparsity = 1.5; - instr.maxPolyphony = 5; - instr.levelThreshold = 6; + instr.pitchSparsity = 1.5; if (isString(i)) { -// instr.maxPolyphony = 2; -// instr.levelThreshold = 3; + instr.maxPolyphony = 1; + instr.levelThreshold = 3; stringTemplates.push_back(t); } if (isWind(i)) { -// instr.maxPolyphony = 1; -// instr.levelThreshold = 5; + instr.maxPolyphony = 1; + instr.levelThreshold = 3; windTemplates.push_back(t); } if (isOK(instr)) {