New in version 2.0.
Make augmented tuplet from duration and proportions and encourage dots:
abjad> print tuplettools.make_augmented_tuplet_from_duration_and_proportions_and_encourage_dots(
... Fraction(3, 16), [1, 1, 1, -1, -1])
{@ 5:8 c'64., c'64., c'64., r64., r64. @}
Interpret nonassignable proportions according to direction:
abjad> print tuplettools.make_augmented_tuplet_from_duration_and_proportions_and_encourage_dots(
... Fraction(3, 16), [5, -1, 5], direction = 'little-endian')
{@ 11:16 c'32..., r128., c'32... @}
Reduce proportions relative to each other.
Interpret negative proportions as rests.
Return fixed-duration tuplet.
Changed in version 2.0: renamed divide.duration_into_arbitrary_augmentation_dotted() to tuplettools.make_augmented_tuplet_from_duration_and_proportions_and_encourage_dots().