Rolled back synth scripts to fff91ae commit before Madeleine's modifications to write config files; the modified version is failing right away with trouble copying configs

This commit is contained in:
David Harris 2022-08-24 00:09:16 +00:00
parent 564281b8c1
commit a1311c06ef
5 changed files with 47 additions and 38 deletions

View file

@ -184,9 +184,9 @@ def plotConfigs(tech, special=''):
freq = techdict[tech].targfreq
for oneSynth in allSynths:
if (tech == oneSynth.tech) & (freq == oneSynth.freq) & (oneSynth.special == special):
delays += [oneSynth.delay]
areas += [oneSynth.area]
labels += [oneSynth.width + oneSynth.config]
delays += [oneSynth.delay]
areas += [oneSynth.area]
labels += [oneSynth.width + oneSynth.config]
fig, (ax) = plt.subplots(1, 1)