melody.py
melody.py copied to clipboard
Brute-force generation of ten-note cantus firmus melodies and first species counterpoint
Hi there Your checking function `changes_direction_several_times` is incorrect. Current state ``` def changes_direction_several_times(): directional_changes = [intervals[i+1] - intervals[i] for i in range(len(m) - 2)] if len([x for x in directional_changes...
Hi Alex! I have started work on [my own generative stuff](https://github.com/manchuwook/reaper-pysong) and was wondering what I would best be able to do to utilize your counterpoint generator. My ideal state...