
    rh                      % S r SSKJr  SSKJr  SSKrSSKrSSKrSSKrSSK	r
SSK	Jr  SSKJr  SSKJr  SSKJr  SS	KJr  SS
KJr  SSKJr  \
R*                  (       a  SSKJr  SSKJr  SSKJr  \R2                  " S5      rSrS\S'    " S S\R:                  5      r\R>                  S\R@                  S\RB                  S0r"/ SQr#Sr$SWS jr% " S S\R:                  5      r&\&RN                  \&RP                  \&RR                  \&RT                  \&RV                  \&RX                  \&RZ                  \&R\                  \&R^                  /	r0Sr1\&RN                  \&RP                  \&RR                  \&RT                  \&Rd                  \&Rf                  \&RX                  \&RZ                  \&R\                  \&R^                  /
r4Sr5SSSSS S!S"S#.r6\&RV                  r7\&Rd                  r8\&Rf                  r9\7S$4\8S4\9S4\8S%4\9S%4\7S4\&RT                  S4\7S4\8S&4\9S&4\8S 4\9S 4/r:C7C8C9 " S' S(\Rv                  5      r<    SXS) jr=S* r>SYS+ jr?SZS, jr@S[S- jrA    S\S. jrBS]S/ jrC0 rDS0\S1'   S^S3 jrE " S4 S5\R                  5      rG " S6 S7\G5      rH " S8 S9\G5      rI " S: S;\G5      rJ    S_S< jrK      S`S= jrL      SaS> jrM      SbS? jrN      ScS@ jrO      SdSA jrP " SB S2\G5      rQ\    SeSC j5       rR\    SfSD j5       rR    SgSE jrR\    SeSF j5       rS\    SfSG j5       rS    SgSH jrS\    SeSI j5       rT\    SfSJ j5       rT    SgSK jrT\    SeSL j5       rU\    SfSM j5       rU    SgSN jrUSOSP.     ShSQ jjrV      SiSR jrWSjSS jrXST rYSU rZ\M\O\P\Q/r[\\SV:X  a  SSKr\R                  " 5         gg)kz
This module defines various types of interval objects.
Fundamental classes are :class:`~music21.interval.Interval`,
:class:`~music21.interval.GenericInterval`,
and :class:`~music21.interval.ChromaticInterval`.
    )annotations)FractionN)overload)base)common)cacheMethod)StepName)environment)exceptions21)keynotepitchinterval)CDEFGABztuple[StepName, ...]	STEPNAMESc                       \ rS rSrSrSrSrSrg)	Direction4   r       N)__name__
__module____qualname____firstlineno__
DESCENDINGOBLIQUE	ASCENDING__static_attributes__r       J/home/james-whalen/.local/lib/python3.13/site-packages/music21/interval.pyr   r   4   s    JGIr(   r   
DescendingOblique	Ascending)ERRORPerfectMajorMinor	Augmented
DiminishedzDoubly-AugmentedzDoubly-DiminishedzTriply-AugmentedzTriply-DiminishedzQuadruply-AugmentedzQuadruply-Diminished)r-   PMmr   dAAddAAAdddAAAAddddc                    [        U S5      (       a  [        US5      (       a"  [        US5      (       a&  [        U S5      (       d  [        SU < SU< S35      egg)zJ
Raise a ValueError if note1 and note2 are not both Notes or both Pitches
r   znote1 z and note2 z must both be notes or pitchesN)hasattr
ValueErrornote1note2s     r)   _same_classrC   L   sZ     
	 	 )@)@w''w0G0G6%+eY>\]^^ 1H'r(   c                  v    \ rS rSrSrSrSrSrSrSr	Sr
S	rS
rSrSrSrSS jrS r\S 5       rS rS rS rSrg)	SpecifierU   a  
An enumeration for "specifiers" such as Major, Minor, etc.
that has some special properties.

>>> from music21.interval import Specifier
>>> Specifier.PERFECT
<Specifier.PERFECT>

Value numbers are arbitrary and just there for backwards compatibility
with pre v6 work:

>>> Specifier.PERFECT.value
1
>>> Specifier.PERFECT.name
'PERFECT'

>>> str(Specifier.PERFECT)
'P'
>>> str(Specifier.MINOR)
'm'
>>> str(Specifier.DBLDIM)
'dd'
>>> Specifier.DBLDIM.niceName
'Doubly-Diminished'
r                        	   
      c                L    [        [        [        U R                  5         5      $ N)strprefixSpecsintvalueselfs    r)   __str__Specifier.__str__{   s     ;s4::/00r(   c                "    SU R                    S3$ )Nz<Specifier.>namerW   s    r)   __repr__Specifier.__repr__   s    TYYKq))r(   c                :    [         [        U R                  5         $ rR   )niceSpecNamesrU   rV   rW   s    r)   niceNameSpecifier.niceName   s     S_--r(   c                N    [        U R                  5      n/ SQn[        X!   5      $ )z
Return a new specifier that inverts this Specifier.

>>> interval.Specifier.MAJOR.inversion()
<Specifier.MINOR>
>>> interval.Specifier.DIMINISHED.inversion()
<Specifier.AUGMENTED>
>>> interval.Specifier.PERFECT.inversion()
<Specifier.PERFECT>
)Nr   rH   rG   rJ   rI   rL   rK   rN   rM   rP   rO   )rU   rV   rE   )rX   v
inversionss      r)   	inversionSpecifier.inversion   s#     

O>
''r(   c           
     |    SSSSSSSSS	S
.	n U[        U 5         $ ! [         a  n[        U < S35      UeSnAff = f)a  
Returns the number of semitones this specifier is above PERFECT

>>> Specifier = interval.Specifier

Augmented and Doubly-Augmented intervals are one and two semitones above
perfect, respectively:

>>> Specifier.AUGMENTED.semitonesAbovePerfect()
1
>>> Specifier.DBLAUG.semitonesAbovePerfect()
2

Diminished intervals are negative numbers of semitones above perfect:

>>> Specifier.DIMINISHED.semitonesAbovePerfect()
-1
>>> Specifier.TRPDIM.semitonesAbovePerfect()
-3

Perfect is 0:

>>> Specifier.PERFECT.semitonesAbovePerfect()
0

Major and minor cannot be compared to Perfect, so they raise an
IntervalException

>>> Specifier.MINOR.semitonesAbovePerfect()
Traceback (most recent call last):
music21.interval.IntervalException: <Specifier.MINOR> cannot be compared to Perfect
r   r   rG   rH   rI   r   )	r3   r   r7   r9   r;   r6   r8   r:   r<   z cannot be compared to PerfectNrS   KeyErrorIntervalException)rX   semitonesAdjustPerfectkes      r)   semitonesAbovePerfectSpecifier.semitonesAbovePerfect   se    F 
"
	W)#d)44 	W#th.L$MNTVV	Ws    
;6;c                ~    SSSSSSSSS	S
S.
n U[        U 5         $ ! [         a  n[        U < S35      UeSnAff = f)a&  
Returns the number of semitones this specifier is above Major

>>> Specifier = interval.Specifier

Augmented and Doubly-Augmented intervals are one and two semitones above
major, respectively:

>>> Specifier.AUGMENTED.semitonesAboveMajor()
1
>>> Specifier.DBLAUG.semitonesAboveMajor()
2

Minor is below major, so it returns -1.

>>> Specifier.MINOR.semitonesAboveMajor()
-1


Diminished intervals are below minor:

>>> Specifier.DIMINISHED.semitonesAboveMajor()
-2
>>> Specifier.DBLDIM.semitonesAboveMajor()
-3

Major is 0:

>>> Specifier.MAJOR.semitonesAboveMajor()
0

Perfect cannot be compared to Major, so it raises an
IntervalException

>>> Specifier.PERFECT.semitonesAboveMajor()
Traceback (most recent call last):
music21.interval.IntervalException: <Specifier.PERFECT> cannot be compared to Major
r   r   r   rG   rH   rI   rk   rl   rm   )
r4   r5   r   r7   r9   r;   r6   r8   r:   r<   z cannot be compared to MajorNrn   )rX   semitonesAdjustImperfrr   s      r)   semitonesAboveMajorSpecifier.semitonesAboveMajor   sh    R !
	U(T33 	U#th.J$KLRTT	Us    
<7<r   NreturnrS   )r    r!   r"   r#   __doc__PERFECTMAJORMINOR	AUGMENTED
DIMINISHEDDBLAUGDBLDIMTRPAUGTRPDIMQUADAUGQUADDIMrY   r_   propertyrc   rh   rs   rx   r'   r   r(   r)   rE   rE   U   sp    2 GEEIJFFFFGG1
* . .( 0Wd7Ur(   rE   rI   rJ   rG   rL   rN   rP   )r   rG   rH   rI   rJ   rK   rL   r   rH   rK   c                      \ rS rSrSrg)rp   i@  r   N)r    r!   r"   r#   r'   r   r(   r)   rp   rp   @  s    r(   rp   c                
   [        U S5      (       a'  SU R                  ;   a  [        R                  " SU 5      $ [        R                  " SU 5      nUR                  R
                  ULa  XR                  l        UR                  $ )av  
utility function to return either the object itself
or the `.pitch` if it's a Note.

>>> p = pitch.Pitch('D#4')
>>> interval._extractPitch(p) is p
True
>>> nEflat = note.Note('E-4')
>>> interval._extractPitch(nEflat) is nEflat.pitch
True

If given a Note, also sets the client of the Pitch to be the Note if not already done
(for safety, since the Note will be discarded.)
classesPitchzmusic21.pitch.Pitchzmusic21.note.Note)r>   r   tcastr   _client)nOrPns     r)   _extractPitchr   F  sa    " tYGt||$;vv+T22	"D)Awwa77Nr(   c                0    U S:X  a  gU S:  a  U S-   $ U S-
  $ )aA  
Returns an integer of the generic interval number
(P5 = 5, M3 = 3, minor 3 = 3 also) etc. from the given staff distance.

>>> interval.convertStaffDistanceToInterval(3)
4
>>> interval.convertStaffDistanceToInterval(7)
8
>>> interval.convertStaffDistanceToInterval(0)
1
>>> interval.convertStaffDistanceToInterval(-1)
-2
r   r   r   )	staffDists    r)   convertStaffDistanceToIntervalr   _  s)     A~	Q1}1}r(   c                    U S:X  a  gU S:  a'  [        U S-
  S-  5      nU S-
  US-  -
  n[        U   U4$ [        U S-  5      nU S-
  US-  -
  n[        U   US-
  4$ )u+  
Convert a diatonic number to a step name (without accidental) and an octave integer.
The lowest C on a Bösendorfer Imperial Grand is assigned 1 the D above it is 2,
E is 3, etc.  See pitch.diatonicNoteNum for more details

>>> interval.convertDiatonicNumberToStep(15)
('C', 2)
>>> interval.convertDiatonicNumberToStep(23)
('D', 3)
>>> interval.convertDiatonicNumberToStep(0)
('B', -1)
>>> interval.convertDiatonicNumberToStep(1)
('C', 0)

Extremely high and absurdly low numbers also produce "notes".

>>> interval.convertDiatonicNumberToStep(2100)
('B', 299)
>>> interval.convertDiatonicNumberToStep(-19)
('D', -3)

OMIT_FROM_DOCS

>>> interval.convertDiatonicNumberToStep(2)
('D', 0)
>>> interval.convertDiatonicNumberToStep(3)
('E', 0)
>>> interval.convertDiatonicNumberToStep(4)
('F', 0)
>>> interval.convertDiatonicNumberToStep(5)
('G', 0)
>>> interval.convertDiatonicNumberToStep(-1)
('A', -1)
>>> interval.convertDiatonicNumberToStep(-2)
('G', -1)
>>> interval.convertDiatonicNumberToStep(-6)
('C', -1)
>>> interval.convertDiatonicNumberToStep(-7)
('B', -2)
r   )r   r   r   g      @rL   )rU   r   )dnoctave
stepNumbers      r)   convertDiatonicNumberToStepr   u  s}    T 
Qw	ab1f^$1f!,
$f,,R!V1f!,
$vz22r(   c                d   [        U [        5      (       a  U $ [        U [        5      (       a  [        U 5      $ [        U [        5      (       d  [	        SU < S35      eU [
        ;   a  [        [
        R                  U 5      5      $ U R                  5       [
        SS  Vs/ s H  oR                  5       PM     sn;   aL  [        [
        5       H9  u  p#Uc  M
  U R                  5       UR                  5       :X  d  M.  [        U5      s  $    U R                  5       [        SS  Vs/ s H  oR                  5       PM     sn;   aV  [        S[        [        5      5       H9  nU R                  5       [        U   R                  5       :X  d  M.  [        U5      s  $    [        SU < 35      es  snf s  snf )a  
Given an integer or a string representing a "specifier" (major, minor,
perfect, diminished, etc.), return the Specifier.

>>> interval.parseSpecifier('p')
<Specifier.PERFECT>
>>> interval.parseSpecifier('P')
<Specifier.PERFECT>
>>> interval.parseSpecifier('M')
<Specifier.MAJOR>
>>> interval.parseSpecifier('major')
<Specifier.MAJOR>
>>> interval.parseSpecifier('m')
<Specifier.MINOR>
>>> interval.parseSpecifier('Augmented')
<Specifier.AUGMENTED>
>>> interval.parseSpecifier('a')
<Specifier.AUGMENTED>

This is not very useful, but they are there for completeness:

>>> interval.parseSpecifier(interval.Specifier.MAJOR)
<Specifier.MAJOR>

This is the same as calling a Specifier by value:

>>> interval.parseSpecifier(3)
<Specifier.MINOR>

Why? Because of this:

>>> interval.Specifier.MINOR.value
3

Unparsable strings raise an IntervalException:

>>> interval.parseSpecifier('Zebra')
Traceback (most recent call last):
music21.interval.IntervalException: Cannot find a match for value: 'Zebra'

Illegal intervals raise a ValueError:

>>> interval.parseSpecifier(None)
Traceback (most recent call last):
ValueError: Value None must be int, str, or Specifier
zValue z must be int, str, or Specifierr   NzCannot find a match for value: )
isinstancerE   rU   rS   r?   rT   indexlower	enumeraterb   rangelenrp   )rV   xiprefixs       r)   parseSpecifierr     sV   ^ %##%eS!!6%*IJKK**5122 {{}KO<OqO<<";/IA~{{}. |#	 0 {{}M!",=>,=q,=>>q#m,-A{{}a 0 6 6 88 |# . =eYG
HH = ?s   F($F-c                   [        U [        5      (       a  U n[        R                  nGO[        U [        5      (       a  U R                  5       R                  5       n [        R                  n[        R                  [        R                  4 HW  n[        U   R                  5       U ;   d  M   UnU R                  [        U   R                  5       S5      R                  5       n MY     U [        R                  R                  ;   a  [        R                  R                  U    nO[        SU < S35      e[        SU  S35      eX-  nU$ )aZ  
Convert an interval specified in terms of its name (second, third)
into an integer. If integers are passed, assume they are correct.

>>> interval.convertGeneric(3)
3
>>> interval.convertGeneric('third')
3
>>> interval.convertGeneric('3rd')
3
>>> interval.convertGeneric('octave')
8
>>> interval.convertGeneric('twelfth')
12
>>> interval.convertGeneric('descending twelfth')
-12
>>> interval.convertGeneric(12)
12
>>> interval.convertGeneric(-12)
-12
>>> interval.convertGeneric(1)
1

>>> interval.convertGeneric(None)
Traceback (most recent call last):
music21.interval.IntervalException: Cannot get a direction from None.

Strings are not the same as numbers:

>>> interval.convertGeneric('1')
Traceback (most recent call last):
music21.interval.IntervalException: Cannot convert '1' to an interval.

But this works:

>>> interval.convertGeneric('1st')
1
 zCannot convert z to an interval.zCannot get a direction from .)r   rU   r   r&   rS   stripr   r$   directionTermsreplacer   numberToolsordinalsToNumbersrp   )rV   postdirectionScalar	directions       r)   convertGenericr     s   P %#--	E3		##% $--#..	0C0CDIi(..0E9"+nY&?&E&E&GLRRT E
 F&&888%%77>D#oeY>N$OPP">ugQ GHH!DKr(   c                    U S:  a  SnOSn[        U S5      u  pUS-  nUS:  a
  US-
  nU S-  n [        U 5      n [        U 5      S-  n[        U 5      S-  n[        U   u  pgXgUS-  -   U-  U4$ )	a  
Given a number of semitones (positive or negative),
return a default diatonic specifier and cent offset.

>>> interval.convertSemitoneToSpecifierGenericMicrotone(2.5)
(<Specifier.MAJOR>, 2, 50.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(-2.5)
(<Specifier.MINOR>, -3, 50.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(-2.25)
(<Specifier.MAJOR>, -2, -25.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(-1.0)
(<Specifier.MINOR>, -2, 0.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(2.25)
(<Specifier.MAJOR>, 2, 25.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(1.0)
(<Specifier.MINOR>, 2, 0.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(1.75)
(<Specifier.MAJOR>, 2, -25.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(1.9)
(<Specifier.MAJOR>, 2, -10.0...)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(0.25)
(<Specifier.PERFECT>, 1, 25.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(12.25)
(<Specifier.PERFECT>, 8, 25.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(24.25)
(<Specifier.PERFECT>, 15, 25.0)
>>> interval.convertSemitoneToSpecifierGenericMicrotone(23.75)
(<Specifier.PERFECT>, 15, -25.0)
r   r   r         Y@2   d      rL   )divmodrU   absSEMITONES_TO_SPEC_GENERIC)countdirScalemicrocentssizer   specgenerics           r)   *convertSemitoneToSpecifierGenericMicrotoner   3  s    @ qy%#LEEMErz
JEu:?DZ2F-d3MDfqj)X5u==r(   c                $    [        U 5      u  pnX4$ )al  
Given a number of semitones, return a default diatonic specifier, and
a number that can be used as a GenericInterval

>>> interval.convertSemitoneToSpecifierGeneric(0)
(<Specifier.PERFECT>, 1)
>>> interval.convertSemitoneToSpecifierGeneric(-2)
(<Specifier.MAJOR>, -2)
>>> interval.convertSemitoneToSpecifierGeneric(1)
(<Specifier.MINOR>, 2)
>>> interval.convertSemitoneToSpecifierGeneric(7)
(<Specifier.PERFECT>, 5)
>>> interval.convertSemitoneToSpecifierGeneric(11)
(<Specifier.MAJOR>, 7)
>>> interval.convertSemitoneToSpecifierGeneric(12)
(<Specifier.PERFECT>, 8)
>>> interval.convertSemitoneToSpecifierGeneric(13)
(<Specifier.MINOR>, 9)
>>> interval.convertSemitoneToSpecifierGeneric(-15)
(<Specifier.MINOR>, -10)
>>> interval.convertSemitoneToSpecifierGeneric(24)
(<Specifier.PERFECT>, 15)

Note that the tritone is given as diminished fifth, not augmented fourth:

>>> interval.convertSemitoneToSpecifierGeneric(6)
(<Specifier.DIMINISHED>, 5)

Microtones are rounded here:

>>> interval.convertSemitoneToSpecifierGeneric(0.4)
(<Specifier.PERFECT>, 1)
>>> interval.convertSemitoneToSpecifierGeneric(0.6)
(<Specifier.MINOR>, 2)
)r   )r   	specifier	semitonesunused_cent_offsets       r)   !convertSemitoneToSpecifierGenericr   h  s     J 0ZZ_/`,I,!!r(   z'dict[str, tuple[pitch.Pitch, Fraction]]_pythagorean_cacheIntervalc                l   SSK Jn  U" S5      nUR                  U 5      nUR                  [        ;   a  [        UR                     u  pEOUnUn[        S5       H  nUR                  UR                  :X  a  [        SS5      U-  nUn  ObUR                  UR                  :X  a  [        SS5      U-  nUn  O5UR                  S5      nUR                  S5      nM     [        S	U  S
35      eXE4[        UR                  '   [        UR                  UR                  -
  S-  5      n	U[        SS5      U	-  -  $ )a}  
Returns the interval ratio in pythagorean tuning, always as a Fraction object.

>>> iList = [interval.Interval(name) for name in ('P4', 'P5', 'M7', 'm23')]
>>> iList
[<music21.interval.Interval P4>,
 <music21.interval.Interval P5>,
 <music21.interval.Interval M7>,
 <music21.interval.Interval m23>]

>>> [interval.intervalToPythagoreanRatio(i) for i in iList]
[Fraction(4, 3), Fraction(3, 2), Fraction(243, 128), Fraction(2048, 243)]

Throws an exception if no ratio can be found, such as for quarter tones.

>>> p1, p2 = pitch.Pitch('C1'), pitch.Pitch('C1')
>>> p2.accidental = 'half-sharp'

>>> fiftyCent = interval.Interval(p1, p2)
>>> fiftyCent
<music21.interval.Interval A1 (-50c)>

>>> interval.intervalToPythagoreanRatio(fiftyCent)
Traceback (most recent call last):
music21.interval.IntervalException: Could not find a pythagorean ratio for
    <music21.interval.Interval A1 (-50c)>.
r   )r   C1%   rH   rG   P5z-P5z'Could not find a pythagorean ratio for r   r   r   )
music21.pitchr   	transposer^   r   r   r   rp   rU   ps)
intervalObjr   start_pitchend_pitch_wanted	end_pitchratioend_pitch_upend_pitch_downcounteroctavess
             r)   intervalToPythagoreanRatior     sI   8 $+K",,[9
  22-.>.C.CD	5 #$ RyG  $4$9$99 A'1(	$$(8(=(== A'1*	  ,55d;!/!9!9%!@ ! $9+aHJ J 5>4D+001#&&5;<G8Aq>W,,,r(   c                  |    \ rS rSrSrS
S jr\R                  SS.   SS jj5       r\R                  S 5       r	Sr
g	)IntervalBasei  z%
General base class for inheritance.
c                t    U R                  UR                  5      n[        R                  " U5      nX#l        U$ )z
Uses self.transposePitch to do the same to a note.

>>> n1 = note.Note('C#4', quarterLength=2.0)
>>> i = interval.Interval('d5')
>>> n2 = i.transposeNote(n1)
>>> n2
<music21.note.Note G>
>>> n2.pitch
<music21.pitch.Pitch G4>
>>> n2.duration.type
'half'
)transposePitchr   copydeepcopy)rX   rA   newPitchnewNotes       r)   transposeNoteIntervalBase.transposeNote  s0     &&u{{3--& r(   FinPlacec                   [         ezY
IntervalBase does not know how to do this, so it must be overridden in
derived classes.
NotImplementedError)rX   pitch1r   s      r)   r   IntervalBase.transposePitch  s
     "!r(   c                    [         er   r   rW   s    r)   reverseIntervalBase.reverse  s
     "!r(   r   N)rA   	note.Noter{   r   )r   pitch.Pitchr   bool)r    r!   r"   r#   r|   r   abcabstractmethodr   r   r'   r   r(   r)   r   r     sW    & 	 (-"*" !%" " 	" "r(   r   c                    ^  \ rS rSrSr S( S)U 4S jjjrS rS rS r\	S*S j5       r
\
R                  S+S j5       r
\	S*S	 j5       r\R                  S+S
 j5       r\	S*S j5       r\	S,S j5       r\	S-S j5       r\	S-S j5       r\	S-S j5       r\	S-S j5       r\	S.S j5       r\	S*S j5       r\	S*S j5       r\	S*S j5       r\	S*S j5       r\	S*S j5       r\	S*S j5       r\	S-S j5       rS/S jr\	S0S j5       r\	S0S j5       r\	S0S j5       r\	S*S j5       r\	S*S j5       r \	S*S j5       r!\"S1S  j5       r#S1S! jr$S"S#.S2S$ jjr% S3S"S#.     S4S% jjjr&S5S& jr'S'r(U =r)$ )6GenericIntervali  a   
A GenericInterval is an interval such as Third, Seventh, Octave, or Tenth.
Constructor takes an integer or string specifying the interval and direction.

The interval is not specified in half-steps, but in numeric values
derived from interval names:
a Third is 3; a Seventh is 7, etc. String values for interval names ('3rd' or 'third')
are generally accepted, but discouraged since not every one will work.

staffDistance: the number of lines or spaces apart, eg:

    E.g. C4 to C4 = 0;  C4 to D4 = 1;  C4 to B3 = -1

Two generic intervals are the equal if their size and direction are the same.

>>> gi = interval.GenericInterval(8)
>>> gi
<music21.interval.GenericInterval 8>

>>> third = interval.GenericInterval(3)
>>> third.directed
3
>>> third.direction
<Direction.ASCENDING: 1>
>>> third.perfectable
False
>>> third.staffDistance
2

We can also specify intervals from strings:

>>> third = interval.GenericInterval('Third')
>>> third
<music21.interval.GenericInterval 3>
>>> third.directed
3

or like this:

>>> thirdDown = interval.GenericInterval('Descending Third')
>>> thirdDown
<music21.interval.GenericInterval -3>
>>> thirdDown.directed
-3

A lot of tools for working with large intervals

>>> twelfthDown = interval.GenericInterval(-12)
>>> twelfthDown.niceName
'Twelfth'
>>> twelfthDown.perfectable
True
>>> twelfthDown.staffDistance
-11
>>> twelfthDown.mod7
4
>>> twelfthDown.directed
-12
>>> twelfthDown.undirected
12

>>> complement12 = twelfthDown.complement()
>>> complement12.niceName
'Fourth'
>>> complement12.staffDistance
3


Note this illegal interval:

>>> zeroth = interval.GenericInterval(0)
Traceback (most recent call last):
music21.interval.IntervalException: The Zeroth is not an interval

However, this is okay:

>>> descendingUnison = interval.GenericInterval(-1)
>>> descendingUnison.direction
<Direction.DESCENDING: -1>
>>> descendingUnison.directed
-1
>>> descendingUnison.undirected
1

This is because we don't yet know what type of unison this is: is it
a Perfect Unison or an Augmented Unison (or Augmented Prime as some prefer)?
Thus, the illegal check will be moved to a higher level Interval object.


A second is a step:

>>> second = interval.GenericInterval(2)
>>> second.isDiatonicStep
True
>>> second.isStep
True

A third is not:

>>> third = interval.GenericInterval(-3)
>>> third.isDiatonicStep
False
>>> third.isStep
False


Intervals more than three octaves use numbers with abbreviations instead of names

>>> threeOctaveSecond = interval.GenericInterval(23)
>>> threeOctaveSecond.niceName
'23rd'

>>> threeOctaveThird = interval.GenericInterval(24)
>>> threeOctaveThird.niceName
'24th'
>>> threeOctaveThird.isDiatonicStep
False
>>> threeOctaveThird.isStep
False
>>> threeOctaveThird.simpleNiceName
'Third'

* Changed in v6: large intervals get abbreviations
c                T   > [         TU ]  " S0 UD6  SU l        [        U5      U l        g )Nr   r   )super__init___valuer   rV   )rX   rV   keywords	__class__s      r)   r   GenericInterval.__init__  s(     	$8$#E*
r(   c                ,    [        U R                  5      $ rR   rS   directedrW   s    r)   _reprInternalGenericInterval._reprInternal      4==!!r(   c                p    [        U[        U 5      5      (       d  gU R                  UR                  :X  a  gg)aI  
True if value and direction are the same.

>>> a = interval.GenericInterval('Third')
>>> b = interval.GenericInterval(-3)
>>> c = interval.GenericInterval(3)
>>> d = interval.GenericInterval(6)
>>> a == b
False
>>> a == a == c
True
>>> b == c
False
>>> a != d
True
>>> a in [b, c, d]
True

>>> a == ''
False
>>> a is None
False
FT)r   typerV   rX   others     r)   __eq__GenericInterval.__eq__  s.    0 %d,,ZZ5;;&r(   c                    [        U 5      S-	  $ NrI   idrW   s    r)   __hash__GenericInterval.__hash__      $x1}r(   c                    U R                   $ )z
The size of this interval as an integer.  Synonym for `self.directed`

>>> interval.GenericInterval('Descending Sixth').value
-6
)r   rW   s    r)   rV   GenericInterval.value  s     {{r(   c                R    U R                  5         US:X  a  [        S5      eXl        g )Nr   zThe Zeroth is not an interval)
clearCacherp   r   rX   newValues     r)   rV   r    s$    q=#$CDDr(   c                    U R                   $ )z
Synonym for `self.value`

>>> sixthDown = interval.GenericInterval(-6)
>>> sixthDown.directed
-6
>>> sixthDown.directed = 2
>>> sixthDown.value
2
rV   rW   s    r)   r   GenericInterval.directed  s     zzr(   c                    Xl         g rR   r  r  s     r)   r   r    s    
r(   c                ,    [        U R                  5      $ )z
Returns the absolute value of `self.directed`.  Read-only

>>> sixthDown = interval.GenericInterval(-6)
>>> sixthDown.undirected
6
)r   rV   rW   s    r)   
undirectedGenericInterval.undirected  s     4::r(   c                    U R                   nUS:X  a  [        R                  $ US:  a  [        R                  $ [        R                  $ )a(  
Returns a Direction Enum value for the direction of this interval:

>>> interval.GenericInterval('Descending Fifth').direction
<Direction.DESCENDING: -1>

>>> interval.GenericInterval('Unison').direction
<Direction.OBLIQUE: 0>

>>> interval.GenericInterval(4).direction
<Direction.ASCENDING: 1>
r   r   )r   r   r%   r$   r&   )rX   r6   s     r)   r   GenericInterval.direction  s?     MM6$$$U'''&&&r(   c                     U R                   S:  $ )a  
Returns True if the undirected interval is bigger than a second.

>>> interval.GenericInterval('Octave').isSkip
True
>>> interval.GenericInterval('Descending 2nd').isSkip
False
>>> interval.GenericInterval(1).isSkip
False

Note that Unisons are neither steps nor skips.
rG   r  rW   s    r)   isSkipGenericInterval.isSkip  s     ""r(   c                     U R                   S:H  $ )a2  
Return True if this interval is a step (a second).
A synonym for `isStep` for generic intervals.

>>> interval.GenericInterval(-2).isDiatonicStep
True
>>> interval.GenericInterval(1).isDiatonicStep
False
>>> interval.GenericInterval(9).isDiatonicStep
False

Note that Unisons are neither steps nor skips.
rG   r   rW   s    r)   isDiatonicStepGenericInterval.isDiatonicStep  s     !##r(   c                    U R                   $ )z
Return True if this interval is a step (a second).
A synonym for `isDiatonicStep` for generic intervals.

>>> interval.GenericInterval(2).isStep
True
>>> interval.GenericInterval(1).isStep
False
>>> interval.GenericInterval(-9).isStep
False
)r$  rW   s    r)   isStepGenericInterval.isStep  s     """r(   c                     U R                   S:H  $ )z\
Returns True if this interval is a Unison.

Note that Unisons are neither steps nor skips.
r   r   rW   s    r)   isUnisonGenericInterval.isUnison#  s     !##r(   c                R    [        U R                  S5      u  pUS:X  a  US-  nSnX!4$ )z6
Returns simpleUndirectedSteps and undirectedOctaves.
rL   r   r   )r   r  )rX   r   stepss      r)   _simpleStepsAndOctaves&GenericInterval._simpleStepsAndOctaves,  s3      3A:qLGE~r(   c                     U R                   S   $ )z
Return the undirected distance within an octave

>>> interval.GenericInterval('Descending Ninth').simpleUndirected
2
>>> interval.GenericInterval(8).simpleUndirected
1
r   r.  rW   s    r)   simpleUndirected GenericInterval.simpleUndirected8  s     **1--r(   c                L    U R                   nU R                  S:  a  US:X  a  gU$ )aR  
Same as simpleUndirected, but allows octaves and double octaves, etc.
to remain 8, which is useful for a
number of parallel octave vs. unison routines.

>>> interval.GenericInterval('Descending Ninth').semiSimpleUndirected
2
>>> interval.GenericInterval(8).semiSimpleUndirected
8
>>> interval.GenericInterval(-15).semiSimpleUndirected
8
r   rM   )r2  undirectedOctavesrX   r2  s     r)   semiSimpleUndirected$GenericInterval.semiSimpleUndirectedD  s/      00!!Q&+;q+@##r(   c                     U R                   S   $ )a'  
Returns the number of octaves (without direction) for an interval

>>> interval.GenericInterval(5).undirectedOctaves
0
>>> interval.GenericInterval('Descending Ninth').undirectedOctaves
1
>>> interval.GenericInterval(8).undirectedOctaves
1
>>> interval.GenericInterval(-15).undirectedOctaves
2
r   r1  rW   s    r)   r5  !GenericInterval.undirectedOctavesX  s     **1--r(   c                d    U R                   nU R                  [        R                  :X  a  SU-  $ U$ )z
Return the number of octaves with direction.

>>> interval.GenericInterval(5).octaves
0
>>> interval.GenericInterval('Descending Ninth').octaves
-1
>>> interval.GenericInterval(8).octaves
1
>>> interval.GenericInterval(-15).octaves
-2
r   )r5  r   r   r$   )rX   r5  s     r)   r   GenericInterval.octavesh  s4     !22>>Y111)))$$r(   c                p    U R                   nU R                  [        R                  :X  a  US:  a  SU-  $ U$ )z
Return the directed distance within an octave

>>> interval.GenericInterval('Descending Ninth').simpleDirected
-2
>>> interval.GenericInterval(8).simpleDirected
1
>>> interval.GenericInterval(-8).simpleDirected
1
r   r   )r2  r   r   r$   r6  s     r)   simpleDirectedGenericInterval.simpleDirected|  s<      00>>Y1116F6J(((##r(   c                p    U R                   nU R                  [        R                  :X  a  US:  a  SU-  $ U$ )aH  
Return the same as semiSimpleUndirected but with descending intervals
as a negative number

>>> interval.GenericInterval('Descending Ninth').semiSimpleDirected
-2
>>> interval.GenericInterval(8).semiSimpleDirected
8
>>> interval.GenericInterval(-15).semiSimpleDirected
-8
>>> interval.GenericInterval(-8).semiSimpleDirected
-8
r   r   )r7  r   r   r$   )rX   r7  s     r)   semiSimpleDirected"GenericInterval.semiSimpleDirected  s<      $88>>Y1116JQ6N,,,''r(   c                     U R                   S;   $ )a  
Returns True if the interval might represent a perfect interval,
that is, it is a Generic 4th, 5th, or unison/octave

>>> interval.GenericInterval(4).perfectable
True
>>> interval.GenericInterval(-12).perfectable
True
>>> interval.GenericInterval(3).perfectable
False
)r   rI   rJ   )r2  rW   s    r)   perfectableGenericInterval.perfectable  s     $$	11r(   c                     [         R                  R                  U   $ ! [         a.    [	        U5      [         R                  R                  U5      -   s $ f = frR   )r   r   musicOrdinals
IndexErrorrS   ordinalAbbreviation)rX   keyVals     r)   _nameFromIntGenericInterval._nameFromInt  sP    	P%%33F;; 	Pv;!3!3!G!G!OOO	Ps    5AAc                8    U R                  U R                  5      $ )ay  
Return the niceName as a string for this Interval

>>> interval.GenericInterval(4).niceName
'Fourth'
>>> interval.GenericInterval(-12).niceName
'Twelfth'
>>> interval.GenericInterval(3).niceName
'Third'

Extremely large intervals get displayed as abbreviations

>>> interval.GenericInterval(44).niceName
'44th'

* Changed in v6: large numbers get the 'th' or 'rd' etc. suffix
)rK  r  rW   s    r)   rc   GenericInterval.niceName  s    &   11r(   c                8    U R                  U R                  5      $ )z
Return the niceName as a string for this Interval's simple form

>>> interval.GenericInterval(4).simpleNiceName
'Fourth'
>>> interval.GenericInterval(-12).simpleNiceName
'Fifth'
>>> interval.GenericInterval(8).simpleNiceName
'Unison'
)rK  r2  rW   s    r)   simpleNiceNameGenericInterval.simpleNiceName  s       !6!677r(   c                8    U R                  U R                  5      $ )z
Return the niceName as a string for this Interval's semiSimple form

>>> interval.GenericInterval(4).semiSimpleNiceName
'Fourth'
>>> interval.GenericInterval(-12).semiSimpleNiceName
'Fifth'
>>> interval.GenericInterval(8).semiSimpleNiceName
'Octave'
)rK  r7  rW   s    r)   semiSimpleNiceName"GenericInterval.semiSimpleNiceName  s       !:!:;;r(   c                :    U R                   nUS:  a  US-
  $ US-   $ )aS  
Return the number of spaces/stafflines that this
interval represents.  A unison is 0, an ascending second is 1,
a descending third is -2, etc.

Useful for interval arithmetic

>>> interval.GenericInterval('Ascending Third').staffDistance
2
>>> interval.GenericInterval(-8).staffDistance
-7
>>> interval.GenericInterval(1).staffDistance
0
r   r   )r   )rX   r   s     r)   staffDistanceGenericInterval.staffDistance  s(      ==a<a<a<r(   c                     SU R                   -
  $ )aJ  
Return the inversion of this interval within an octave.
For instance, seconds become sevenths, octaves become unisons,
and vice-versa.

All are undirected intervals.

>>> interval.GenericInterval(4).mod7inversion
5
>>> interval.GenericInterval('Descending Octave').mod7inversion
1
>>> interval.GenericInterval(9).mod7inversion
7
rN   )r7  rW   s    r)   mod7inversionGenericInterval.mod7inversion   s      4,,,,r(   c                n    U R                   [        R                  :X  a  U R                  $ U R                  $ )a  
Return this interval as a number 1-7, that is, within an octave,
but unlike simpleDirected or simpleUndirected, turn descending
seconds into sevenths, etc.  Used for calculating step names.

For instance, going down a step from C, or GenericInterval(-2),
would give a B, which is the same as GenericInterval(7) (not counting
octaves), but going up a step from C, or GenericInterval(2) is D, which
is the same as going up a 9th.

>>> interval.GenericInterval(-2).mod7
7
>>> interval.GenericInterval(2).mod7
2
>>> interval.GenericInterval(9).mod7
2
>>> interval.GenericInterval('Unison').mod7
1
>>> interval.GenericInterval('Descending Octave').mod7
1
>>> interval.GenericInterval(15).mod7
1

See :meth:`music21.chord.Chord.semitonesFromChordStep` for a place
this is used.
)r   r   r$   rY  r>  rW   s    r)   mod7GenericInterval.mod7  s.    8 >>Y111%%%&&&r(   c                ,    [        U R                  5      $ )a  
Returns a new GenericInterval object where 3rds are 6ths, etc.

>>> third = interval.GenericInterval('Third')
>>> third.complement()
<music21.interval.GenericInterval 6>

Note that currently direction is lost after a complement relationship:

>>> fourth = interval.GenericInterval(-4)
>>> fourthComp = fourth.complement()
>>> fourthComp
<music21.interval.GenericInterval 5>
>>> fourthComp.directed
5

Called more than once, this may return the exact identical object:

>>> fourthComp.complement() is fourthComp.complement()
True
)r   rY  rW   s    r)   
complementGenericInterval.complement4  s    . t1122r(   c                    U R                   S:X  a  [        S5      $ [        U R                   SU R                  -  -  5      $ )a  
Returns a new GenericInterval object that is inverted.

>>> aInterval = interval.GenericInterval('Third')
>>> aInterval.reverse()
<music21.interval.GenericInterval -3>

>>> aInterval = interval.GenericInterval(-13)
>>> aInterval.direction
<Direction.DESCENDING: -1>
>>> aInterval.reverse()
<music21.interval.GenericInterval 13>

Unisons invert to unisons

>>> aInterval = interval.GenericInterval(1)
>>> aInterval.reverse()
<music21.interval.GenericInterval 1>
r   r   )r  r   r   rW   s    r)   r   GenericInterval.reverseM  s8    ( ??a"1%%"4??b4>>6I#JKKr(   Fr   c                   UR                   c  SnOSnUR                  nU(       a  UnO[        R                  " U5      nX@R                  -   Ul        U(       a  SUl         U(       d  U$ g)ao  
transpose a pitch, retaining the accidental if any.

>>> aPitch = pitch.Pitch('g4')
>>> genericFifth = interval.GenericInterval(5)
>>> bPitch = genericFifth.transposePitch(aPitch)
>>> bPitch
<music21.pitch.Pitch D5>

If inPlace is True then applied to the current pitch:

>>> gPitch = pitch.Pitch('g4')
>>> genericFifth = interval.GenericInterval(5)
>>> genericFifth.transposePitch(gPitch, inPlace=True)
>>> gPitch
<music21.pitch.Pitch D5>

A generic interval transformation retains accidentals:

>>> a2 = pitch.Pitch('B-')
>>> cPitch = genericFifth.transposePitch(a2)
>>> cPitch
<music21.pitch.Pitch F->
>>> a2.octave == cPitch.octave
True

Can be done inPlace as well, in which case, nothing is returned:

>>> gSharp = pitch.Pitch('g#4')
>>> genericFifth = interval.GenericInterval(5)
>>> genericFifth.transposePitch(gSharp, inPlace=True)
>>> gSharp
<music21.pitch.Pitch D#5>
NTF)r   diatonicNoteNumr   r   rV  )rX   pr   useImplicitOctavepitchDNNr   s         r)   r   GenericInterval.transposePitchf  sd    F 88 $ %$$H}}Q'H#+.@.@#@ "HOO r(   c                  SSK Jn  Uc  U R                  XS9$ UR                  UR                  5      nUb  UR
                  OSnUR                  b  UR                  R
                  OSnXv-
  nU R                  XS9n	U(       a  Un	UR                  U	R                  5      n
U
b  U
R
                  OSnX-   nUS:w  a  UR                  " U5      U	l        OU	R                  b  SU	l        U(       d  U	$ g)aa  
Transposes a pitch while remaining aware of its key context,
for modal transposition:

If k is None, works the same as `.transposePitch`:

>>> aPitch = pitch.Pitch('g4')
>>> genericFifth = interval.GenericInterval(5)
>>> bPitch = genericFifth.transposePitchKeyAware(aPitch, None)
>>> bPitch
<music21.pitch.Pitch D5>

But if a key or keySignature (such as one from `.getContextByClass(key.KeySignature)`)
is given, then the fun begins:

>>> fis = pitch.Pitch('F#4')
>>> e = pitch.Pitch('E')
>>> gMaj = key.Key('G')
>>> genericStep = interval.GenericInterval('second')
>>> genericStep.transposePitchKeyAware(fis, gMaj)
<music21.pitch.Pitch G4>
>>> genericStep.transposePitchKeyAware(e, gMaj)
<music21.pitch.Pitch F#>

If a pitch already has an accidental that contradicts the current
key, the difference between that pitch and the new key is applied
to the new pitch:

>>> fNat = pitch.Pitch('F4')
>>> genericStep.transposePitchKeyAware(fNat, gMaj)
<music21.pitch.Pitch G-4>

inPlace should work:

>>> genericStep.transposePitchKeyAware(fis, gMaj, inPlace=True)
>>> fis
<music21.pitch.Pitch G4>

This is used for Stream.transpose when a GenericInterval is given:

>>> s = converter.parse('tinyNotation: 4/4 d4 e f f# g1 a-4 g b- a c1')
>>> s.measure(1).insert(0, key.Key('G'))
>>> s.measure(3).insert(0, key.Key('c'))
>>> s2 = s.transpose(interval.GenericInterval(2))
>>> s2.show('text')
{0.0} <music21.stream.Measure 1 offset=0.0>
    {0.0} <music21.clef.TrebleClef>
    {0.0} <music21.key.Key of G major>
    {0.0} <music21.meter.TimeSignature 4/4>
    {0.0} <music21.note.Note E>
    {1.0} <music21.note.Note F#>
    {2.0} <music21.note.Note G->
    {3.0} <music21.note.Note G>
{4.0} <music21.stream.Measure 2 offset=4.0>
    {0.0} <music21.note.Note A>
{8.0} <music21.stream.Measure 3 offset=8.0>
    {0.0} <music21.key.Key of c minor>
    {0.0} <music21.note.Note B->
    {1.0} <music21.note.Note A->
    {2.0} <music21.note.Note C>
    {3.0} <music21.note.Note B>
{12.0} <music21.stream.Measure 4 offset=12.0>
    {0.0} <music21.note.Note D>
    {4.0} <music21.bar.Barline type=final>

Does not take into account harmonic or melodic minor.
r   r   Nr   )music21r   r   accidentalByStepstepalter
accidental
Accidental)rX   re  kr   r   rk  	stepAlterpAlteroffsetFromKeyr   newAccidentalByStepnewStepAlternewPitchAlters                r)   transposePitchKeyAware&GenericInterval.transposePitchKeyAware  s    T 	"9&&q&::--aff5.>.J$**PQ	'(||'?##Q*&&q&:H00?4G4S*00YZ$4A"'"2"2="AH  ,"&HO r(   c                    [        X5      $ )a  
Given a specifier, return a :class:`~music21.interval.DiatonicInterval` object.

Specifier should be provided as an `interval.Specifier` enumeration or
a string name, such as 'dd', 'M', or 'perfect'.

>>> third = interval.GenericInterval('Third')
>>> third.getDiatonic(interval.Specifier.MAJOR)
<music21.interval.DiatonicInterval M3>
>>> third.getDiatonic('minor')
<music21.interval.DiatonicInterval m3>
>>> third.getDiatonic('d')
<music21.interval.DiatonicInterval d3>
>>> third.getDiatonic(interval.Specifier.TRPAUG)
<music21.interval.DiatonicInterval AAA3>

Old in, specifier values are also allowed

>>> third.getDiatonic(2)
<music21.interval.DiatonicInterval M3>

>>> fifth = interval.GenericInterval('fifth')
>>> fifth.getDiatonic('perfect')
<music21.interval.DiatonicInterval P5>

>>> fifth.getDiatonic('major')
Traceback (most recent call last):
music21.interval.IntervalException: Cannot create a 'Major Fifth'
)DiatonicInterval)rX   r   s     r)   getDiatonicGenericInterval.getDiatonic  s    <  	00r(   )r   rV   )Unison)rV   	int | strr{   rU   )r  rU   r{   r   r{   r   )r{   ztuple[int, int])rJ  rU   r{   rS   rz   r{   r   re  r   rR   )re  r   rp  zkey.KeySignature | Noner   r   )r   zSpecifier | strr{   rz  )*r    r!   r"   r#   r|   r   r   r  r  r   rV   setterr   r  r   r!  r$  r'  r*  r.  r2  r7  r5  r   r>  rA  rD  rK  rc   rP  rS  rV  rY  r\  r   r_  r   r   rw  r{  r'   __classcell__r   s   @r)   r   r     s   {z #+++ +">   \\    __    ' '* # # $ $  # # $ $ 	 	 	. 	. $ $& . . % %& $ $" ( (( 2 2P 2 2( 8 8 < <    * - -" ' 'B 3 30L2 9> 3p $(b
 bb !b
 bH1 1r(   r   c                  H  ^  \ rS rSr% SrSSS.rS\S'     S(   S)U 4S jjjrS*S	 jrS
 r	S r
\S*S j5       r\S*S j5       r\S*S j5       r\S*S j5       r\S*S j5       r\S*S j5       r\S*S j5       r\S+S j5       r\S*S j5       r\S*S j5       r\S*S j5       r\S*S j5       r\S*S j5       r\S*S j5       r\S,S j5       r\S,S j5       r\S,S j5       r\S,S j5       r\S*S j5       r\S*S j5       rS-S  jr S.S! jr!S"S#.S/S$ jjr"\S*S% j5       r#\S0S& j5       r$S'r%U =r&$ )1rz  i   a
  
A class representing a diatonic interval. Two required arguments are a string `specifier`
(such as perfect, major, or minor) and `generic`, either an int
of an interval size (such as 2, 2nd, or second) or a
:class:`~music21.interval.GenericInterval` object.

Two DiatonicIntervals are the same if their GenericIntervals
are the same and their specifiers are the same and they should be
if their directions are the same, but this is not checked yet.

The `specifier` is an enumeration/Specifier object.

The `generic` is an integer or GenericInterval instance.

>>> unison = interval.DiatonicInterval(interval.Specifier.PERFECT, 1)
>>> unison
<music21.interval.DiatonicInterval P1>
>>> unison.simpleName
'P1'
>>> unison.specifier
<Specifier.PERFECT>
>>> unison.generic
<music21.interval.GenericInterval 1>
>>> unison.direction
<Direction.OBLIQUE: 0>

The first value can be a string:

>>> major3a = interval.DiatonicInterval('major', 3)
>>> major3a.simpleName
'M3'
>>> major3a.niceName
'Major Third'
>>> major3a.semiSimpleName
'M3'
>>> major3a.directedSimpleName
'M3'
>>> major3a.mod7inversion
'm6'

Or the first attribute can be a string abbreviation
(not case sensitive, except Major vs. minor):

>>> major3b = interval.DiatonicInterval('M', 3)
>>> major3b.niceName
'Major Third'

A string can be given for the second argument (generic interval):

>>> major3c = interval.DiatonicInterval('major', 'third')
>>> major3c.niceName
'Major Third'

>>> p8 = interval.DiatonicInterval('perfect', 'octave')
>>> p8.niceName
'Perfect Octave'

>>> genericTenth = interval.GenericInterval(10)
>>> minor10 = interval.DiatonicInterval('m', genericTenth)
>>> minor10.mod7
'm3'
>>> minor10.isDiatonicStep
False
>>> minor10.isStep
False

>>> aInterval = interval.DiatonicInterval('major', 2)
>>> aInterval.isDiatonicStep
True
>>> aInterval.isStep
True

>>> augAscending = interval.DiatonicInterval('augmented', 1)
>>> augAscending
<music21.interval.DiatonicInterval A1>
>>> augAscending.isDiatonicStep
False
>>> augAscending.isStep  # TODO: should this be True???
False
>>> augAscending.directedNiceName
'Ascending Augmented Unison'

For Augmented Unisons, the diatonic interval is ascending while the `.generic` is oblique:

>>> augAscending.direction
<Direction.ASCENDING: 1>
>>> augAscending.generic.direction
<Direction.OBLIQUE: 0>

>>> dimDescending = augAscending.reverse()
>>> dimDescending
<music21.interval.DiatonicInterval d1>
>>> dimDescending.directedNiceName
'Descending Diminished Unison'
>>> dimDescending.direction
<Direction.DESCENDING: -1>


This raises an error:

>>> interval.DiatonicInterval('Perfect', -1)
Traceback (most recent call last):
music21.interval.IntervalException: There is no such thing as a descending Perfect Unison
zUA :class:`~music21.interval.Specifier` enum representing the Quality of the interval.zTA :class:`~music21.interval.GenericInterval` enum representing the general interval.)r   r   zdict[str, str]	_DOC_ATTRc                &  > [         TU ]  " S0 UD6  U   U   [        U[        5      (       a  X l        OP[
        R                  " U5      (       d  [        U[        5      (       a  [        U5      U l        O[        SU< 35      e[        U5      U l
        U R                  [        R                  [        R                  4;   a  U R                  R                  (       d9  U R                  [        R                  :X  aU  U R                  R                  (       d:  [        SU R                  R                    SU R                  R                    S35      eU R                  [        R                  :X  a&  U R                  R"                  S:X  a  [        S5      eg g )Nzincorrect generic argument: zCannot create a ' 'r   z5There is no such thing as a descending Perfect Unisonr   )r   r   r   r   r   r   isIntrS   rp   r   r   rE   r~   r   rD  r}   rc   rV   )rX   r   r   r   r   s       r)   r   DiatonicInterval.__init__  s*    	$8$g//"L\\'""j#&>&>*73DL $&B7+$NOO (	2^^	AAdllF^F^NNi&7&77@X@X##DNN$;$;#<Adll>S>S=TTUV  >>Y...4<<3E3E3K#$[\\ 4L.r(   c                    U R                   $ rR   r]   rW   s    r)   r   DiatonicInterval._reprInternal  s    yyr(   c                    [        US5      (       d  g[        US5      (       d  gU R                  UR                  :X  a5  U R                  UR                  :X  a  U R                  UR                  :X  a  gg)a  
True if generic, specifier, and direction are the same.

>>> a = interval.DiatonicInterval('major', 3)
>>> b = interval.DiatonicInterval('minor', 3)
>>> c = interval.DiatonicInterval('major', 3)
>>> d = interval.DiatonicInterval('diminished', 4)
>>> a == b
False
>>> a == c
True
>>> a == d
False
>>> e = interval.DiatonicInterval('d', 4)
>>> d == e
True

Intervals do not compare to strings:

>>> e == 'd4'
False
r   Fr   T)r>   r   r   r   r  s     r)   r  DiatonicInterval.__eq__  s\    . ui((,,
 LLEMM)%//1NNeoo5r(   c                    [        U 5      S-	  $ r
  r  rW   s    r)   r  DiatonicInterval.__hash__  r  r(   c                l    [        U R                  5      [        U R                  R                  5      -   $ )z
The name of the interval in abbreviated form without direction.

>>> interval.DiatonicInterval('Perfect', 'Fourth').name
'P4'
>>> interval.DiatonicInterval(interval.Specifier.MAJOR, -6).name
'M6'
)rS   r   r   r  rW   s    r)   r^   DiatonicInterval.name  s'     4>>"S)@)@%AAAr(   c                b    U R                   R                  S-   U R                  R                  -   $ )zz
Return the full form of the name of a Diatonic interval

>>> interval.DiatonicInterval('P', 4).niceName
'Perfect Fourth'
r  )r   rc   r   rW   s    r)   rc   DiatonicInterval.niceName  s(     ~~&&,t||/D/DDDr(   c                .    U R                   R                  $ )z
Same as `.specifier.niceName` -- the nice name of the specifier alone

>>> p12 = interval.DiatonicInterval('P', -12)
>>> p12.specificName
'Perfect'
)r   rc   rW   s    r)   specificNameDiatonicInterval.specificName  s     ~~&&&r(   c                l    [        U R                  5      [        U R                  R                  5      -   $ )z
Return the name of a Diatonic interval removing octaves

>>> interval.DiatonicInterval('Augmented', 'Twelfth').simpleName
'A5'
)rS   r   r   r2  rW   s    r)   
simpleNameDiatonicInterval.simpleName  s'     4>>"S)F)F%GGGr(   c                b    U R                   R                  S-   U R                  R                  -   $ )z
Return the full name of a Diatonic interval, simplifying octaves

>>> interval.DiatonicInterval('d', 14).simpleNiceName
'Diminished Seventh'
r  )r   rc   r   rP  rW   s    r)   rP  DiatonicInterval.simpleNiceName  s(     ~~&&,t||/J/JJJr(   c                l    [        U R                  5      [        U R                  R                  5      -   $ )a   
Return the name of a Diatonic interval removing octaves except that
octaves (and double octaves) themselves are 8 instead of 1

>>> interval.DiatonicInterval('Augmented', 'Twelfth').semiSimpleName
'A5'
>>> interval.DiatonicInterval('Diminished', 'Descending Octave').semiSimpleName
'd8'
)rS   r   r   r7  rW   s    r)   semiSimpleNameDiatonicInterval.semiSimpleName  s'     4>>"S)J)J%KKKr(   c                b    U R                   R                  S-   U R                  R                  -   $ )aI  
Return the full name of a Diatonic interval removing octaves except that
octaves (and double octaves) themselves are 8 instead of 1

>>> interval.DiatonicInterval('Augmented', 'Twelfth').semiSimpleNiceName
'Augmented Fifth'
>>> interval.DiatonicInterval('Diminished', 'Descending Octave').semiSimpleNiceName
'Diminished Octave'
r  )r   rc   r   rS  rW   s    r)   rS  #DiatonicInterval.semiSimpleNiceName  s(     ~~&&,t||/N/NNNr(   c                   U R                   R                  S:w  a  U R                   R                  $ U R                  [        R
                  :X  a  U R                   R                  $ [        R                  U R                  5      [        R                  [        R                  5      ::  a  [        R                  $ [        R                  $ )a  
The direction of the DiatonicInterval:

>>> interval.DiatonicInterval('Augmented', 'Twelfth').direction
<Direction.ASCENDING: 1>

>>> interval.DiatonicInterval('M', -2).direction
<Direction.DESCENDING: -1>

>>> interval.DiatonicInterval('P', 1).direction
<Direction.OBLIQUE: 0>

In the absence of other evidence, assumes that augmented unisons are
ascending and diminished unisons are descending:

>>> interval.DiatonicInterval('d', 1).direction
<Direction.DESCENDING: -1>

>>> interval.DiatonicInterval('A', 1).direction
<Direction.ASCENDING: 1>

Note that in the case of non-perfect unisons/primes, the `.generic.direction`
will be `OBLIQUE` while the diatonic direction may be ASCENDING, DESCENDING,
or OBLIQUE.

>>> interval.DiatonicInterval('A', 1).generic.direction
<Direction.OBLIQUE: 0>

r   )r   r  r   r   rE   r}   perfSpecifiersr   r   r   r$   r&   rW   s    r)   r   DiatonicInterval.direction)  s    > <<""a'<<)))>>Y...<<))) />3G3G	H\H\3]]'''&&&r(   c                l    [        U R                  5      [        U R                  R                  5      -   $ )z}
The name of the interval in abbreviated form with direction.

>>> interval.DiatonicInterval('Minor', -6).directedName
'm-6'
)rS   r   r   r   rW   s    r)   directedNameDiatonicInterval.directedNameV  s'     4>>"S)>)>%???r(   c                H    [         U R                     S-   U R                  -   $ )z
The name of the interval in full form with direction.

>>> interval.DiatonicInterval('P', 11).directedNiceName
'Ascending Perfect Eleventh'
>>> interval.DiatonicInterval('Diminished', 'Descending Octave').directedNiceName
'Descending Diminished Octave'
r  )r   r   rc   rW   s    r)   directedNiceName!DiatonicInterval.directedNiceName`  s!     dnn-3dmmCCr(   c                l    [        U R                  5      [        U R                  R                  5      -   $ )z
The name of the interval in abbreviated form with direction, reduced to one octave

>>> interval.DiatonicInterval('Minor', -14).directedSimpleName
'm-7'
)rS   r   r   r>  rW   s    r)   directedSimpleName#DiatonicInterval.directedSimpleNamel  s'     4>>"S)D)D%EEEr(   c                H    [         U R                     S-   U R                  -   $ )a  
The name of the interval, reduced to within an octave, in full form with direction.

>>> interval.DiatonicInterval('P', 11).directedNiceName
'Ascending Perfect Eleventh'
>>> interval.DiatonicInterval('Diminished', 'Descending Octave').directedNiceName
'Descending Diminished Octave'
r  )r   r   rP  rW   s    r)   directedSimpleNiceName'DiatonicInterval.directedSimpleNiceNamev  s#     dnn-3d6I6IIIr(   c                l    [        U R                  5      [        U R                  R                  5      -   $ )a  
The name of the interval in abbreviated form with direction, reduced to one octave,
except for octaves themselves

>>> interval.DiatonicInterval('Minor', -14).directedSemiSimpleName
'm-7'
>>> interval.DiatonicInterval('P', 'Octave').directedSemiSimpleName
'P8'
)rS   r   r   rA  rW   s    r)   directedSemiSimpleName'DiatonicInterval.directedSemiSimpleName  s'     4>>"S)H)H%IIIr(   c                H    [         U R                     S-   U R                  -   $ )a  
The name of the interval in full form with direction.

>>> interval.DiatonicInterval('P', 11).directedSemiSimpleNiceName
'Ascending Perfect Fourth'
>>> interval.DiatonicInterval('Diminished', 'Descending Octave').directedSemiSimpleNiceName
'Descending Diminished Octave'
r  )r   r   rS  rW   s    r)   directedSemiSimpleNiceName+DiatonicInterval.directedSemiSimpleNiceName  s#     dnn-3d6M6MMMr(   c                .    U R                   R                  $ )z
Same as GenericInterval.isStep and .isDiatonicStep

>>> interval.DiatonicInterval('M', 2).isStep
True
>>> interval.DiatonicInterval('P', 5).isStep
False
)r   r'  rW   s    r)   r'  DiatonicInterval.isStep       ||"""r(   c                .    U R                   R                  $ )z
Same as GenericInterval.isDiatonicStep and .isStep

>>> interval.DiatonicInterval('M', 2).isDiatonicStep
True
>>> interval.DiatonicInterval('P', 5).isDiatonicStep
False
)r   r$  rW   s    r)   r$  DiatonicInterval.isDiatonicStep  s     ||***r(   c                .    U R                   R                  $ )z
Same as GenericInterval.isSkip

>>> interval.DiatonicInterval('M', 2).isSkip
False
>>> interval.DiatonicInterval('P', 5).isSkip
True
)r   r!  rW   s    r)   r!  DiatonicInterval.isSkip  r  r(   c                .    U R                   R                  $ )a  
Is the generic component of this interval able to be made perfect?
That is, is this a type of unison, fourth, fifth, or octave (or larger
component).

Note that this does not ask if THIS interval is perfect.  A diminished
fifth is not perfect, but as a fifth it is perfectable.

An augmented seventh sounds like a perfect octave but no seventh can
ever be perfect.

>>> interval.DiatonicInterval('M', 2).perfectable
False
>>> interval.DiatonicInterval('P', 12).perfectable
True
>>> interval.DiatonicInterval('A', 12).perfectable
True
)r   rD  rW   s    r)   rD  DiatonicInterval.perfectable  s    ( ||'''r(   c                    [        U R                  R                  5       5      [        U R                  R                  5      -   $ )a  
Return an inversion of the interval within an octave, losing
direction.  Returns as a string.

>>> interval.DiatonicInterval('M', 2).mod7inversion
'm7'
>>> interval.DiatonicInterval('A', 4).mod7inversion
'd5'
>>> interval.DiatonicInterval('P', 1).mod7inversion
'P8'

Everything is within an octave:

>>> interval.DiatonicInterval('M', 9).mod7inversion
'm7'

Direction is lost:

>>> interval.DiatonicInterval('d', -3).mod7inversion
'A6'
)rS   r   rh   r   rY  rW   s    r)   rY  DiatonicInterval.mod7inversion  s0    . 4>>++-.T\\5O5O1PPPr(   c                n    U R                   [        R                  :X  a  U R                  $ U R                  $ )a  
Return this interval as string of a specifier followed by a number 1-7,
representing a diatonic interval within an octave,
but unlike simpleDirected or simpleUndirected, turns descending
seconds into sevenths, etc.

For instance, going down a minor second from C
would give a B, which is the same as going up a major seventh to B.

This method gives a string representing a diatonic interval that
will reach the same note as this DiatonicInterval but within an octave
up from the basic note.

>>> interval.DiatonicInterval('m', -2).mod7
'M7'
>>> interval.DiatonicInterval('m', 2).mod7
'm2'
>>> interval.DiatonicInterval('M', 9).mod7
'M2'
>>> interval.DiatonicInterval('Perfect', 'Unison').mod7
'P1'
>>> interval.DiatonicInterval('Perfect', 'Descending Octave').mod7
'P1'
>>> interval.DiatonicInterval(interval.Specifier.AUGMENTED, -4).mod7
'd5'

See :meth:`music21.chord.Chord.semitonesFromChordStep` for a place
this is used.
)r   r   r$   rY  r  rW   s    r)   r\  DiatonicInterval.mod7  s,    > >>Y111%%%??"r(   c                    U R                   R                  S:X  a$  [        U R                  R	                  5       S5      $ [        U R                  U R                   R                  5       5      $ )ax  
Return a :class:`~music21.interval.DiatonicInterval` that is
an inversion of this Interval.

>>> aInterval = interval.DiatonicInterval('major', 3)
>>> aInterval.reverse().directedName
'M-3'

>>> aInterval = interval.DiatonicInterval('augmented', 5)
>>> aInterval.reverse().directedName
'A-5'

(Ascending) Augmented Unisons reverse to (Descending)
Diminished Unisons and vice-versa

>>> aug1 = interval.DiatonicInterval('augmented', 1)
>>> aug1.direction
<Direction.ASCENDING: 1>
>>> aug1.directedName
'A1'
>>> dimUnison = aug1.reverse()
>>> dimUnison.directedName
'd1'
>>> dimUnison.directedNiceName
'Descending Diminished Unison'
r   )r   r   rz  r   rh   r   rW   s    r)   r   DiatonicInterval.reverse  sS    6 <<  A%#DNN$<$<$>BB#DNN$(LL$8$8$:< <r(   c                   [        [        U R                  R                  5      S-  5      n[        U R                  R
                     nU R                  R                  (       a  U R                  R                  5       nOU R                  R                  5       nUS-  U-   U-   nU R                  R                  [        R                  :X  a  US-  n[        U5      $ )aR  
Return a :class:`music21.interval.ChromaticInterval`
based on the size of this Interval.

>>> aInterval = interval.DiatonicInterval('major', 'third')
>>> aInterval.niceName
'Major Third'
>>> aInterval.getChromatic()
<music21.interval.ChromaticInterval 4>

>>> aInterval = interval.DiatonicInterval('augmented', -5)
>>> aInterval.niceName
'Augmented Fifth'
>>> aInterval.getChromatic()
<music21.interval.ChromaticInterval -8>

>>> aInterval = interval.DiatonicInterval('minor', 'second')
>>> aInterval.niceName
'Minor Second'
>>> aInterval.getChromatic()
<music21.interval.ChromaticInterval 1>
rL   r   r   )rU   r   r   rV  semitonesGenericr2  rD  r   rs   rx   r   r   r$   ChromaticInterval)rX   octaveOffsetsemitonesStartsemitonesAdjustr   s        r)   getChromaticDiatonicInterval.getChromatic:  s    4 3t||99:Q>?)$,,*G*GH<<##"nnBBDO #nn@@BO!B&.8?J	<<!!Y%9%99OI ++r(   Fr   c               N    [        X R                  5       S9nUR                  XS9$ )a  
Calls transposePitch from a full interval object.

This is not particularly optimized since it
requires creating both a ChromaticInterval
object and a full Interval object. But it's here for completeness.

>>> di = interval.DiatonicInterval('P', 11)
>>> p = pitch.Pitch('C#4')
>>> di.transposePitch(p)
<music21.pitch.Pitch F#5>

Previous pitch was unchanged.  inPlace=True changes that.

>>> p
<music21.pitch.Pitch C#4>
>>> di.transposePitch(p, inPlace=True)
>>> p
<music21.pitch.Pitch F#5>


* Changed in v6: added inPlace
diatonic	chromaticr   )r   r  r   )rX   re  r   fullIntervalObjects       r)   r   DiatonicInterval.transposePitche  s,    2 &t?P?P?RS!000DDr(   c                (    [         U R                     $ )z
Returns the abbreviation for the specifier.

>>> i = interval.Interval('M-10')
>>> d = i.diatonic
>>> d.specifierAbbreviation
'M'
)rT   r   rW   s    r)   specifierAbbreviation&DiatonicInterval.specifierAbbreviation  s     4>>**r(   c                J    U R                  5       nU(       a  UR                  $ g)z
Return the number of cents in this interval.  Returns a float,
always assuming an equal-tempered presentation.

>>> i = interval.DiatonicInterval('minor', 'second')
>>> i.niceName
'Minor Second'
>>> i.cents
100.0
g        )r  r   )rX   cs     r)   r   DiatonicInterval.cents  s!     77Nr(   )r   r   )r3   r   )r   z	str | intr   zint | GenericInterval | strrz   r  r  r{   rz  r{   r  r  r{   float)'r    r!   r"   r#   r|   r  __annotations__r   r   r  r  r   r^   rc   r  r  rP  r  rS  r   r  r  r  r  r  r  r'  r$  r!  rD  rY  r\  r   r  r   r  r   r'   r  r  s   @r)   rz  rz     sC   gR6-!I~  '*45]#]1] ]<$L 	B 	B E E ' ' H H K K 
L 
L 
O 
O *' *'X @ @ 	D 	D F F 	J 	J 
J 
J 	N 	N 	# 	# 	+ 	+ 	# 	# ( (* Q Q2 !# !#P<B),V 9> E8 	+ 	+  r(   rz  c                  8  ^  \ rS rSrSrSSU 4S jjjrSS jrS rS r\	SS j5       r
\	SS j5       r\	SS	 j5       r\	SS
 j5       r\	SS j5       r\	SS j5       r\	SS j5       r\	SS j5       r\	SS j5       r\	SS j5       rSS jrS S jrSS.S!S jjrSrU =r$ )"r  i  aR  
Chromatic interval class. Unlike a :class:`~music21.interval.DiatonicInterval`,
this IntervalBase subclass treats interval spaces in half-steps.
So Major 3rd and Diminished 4th are the same.

Two ChromaticIntervals are equal if their size and direction are equal.

>>> aInterval = interval.ChromaticInterval(-14)
>>> aInterval.semitones
-14
>>> aInterval.undirected
14
>>> aInterval.mod12
10
>>> aInterval.intervalClass
2
>>> aInterval.isChromaticStep
False
>>> aInterval.isStep
False

>>> aInterval = interval.ChromaticInterval(1)
>>> aInterval.isChromaticStep
True
>>> aInterval.isStep
True
c                f   > [         TU ]  " S0 UD6  U[        U5      :X  a  [        U5      nXl        g )Nr   )r   r   rU   r   )rX   r   r   r   s      r)   r   ChromaticInterval.__init__  s-    $8$I&II$-r(   c                ,    [        U R                  5      $ rR   r   rW   s    r)   r   ChromaticInterval._reprInternal  r  r(   c                ^    [        US5      (       d  gU R                  UR                  :X  a  gg)a  
True if number of semitones is the same.

>>> a = interval.ChromaticInterval(-14)
>>> b = interval.ChromaticInterval(14)
>>> c = interval.ChromaticInterval(-14)
>>> d = interval.ChromaticInterval(7)
>>> e = interval.ChromaticInterval(2)

>>> a == b
False
>>> a == c
True
>>> a == d
False
>>> b == e
False

Intervals do not equal numbers:

>>> interval.ChromaticInterval(7) == 7
False
r   FT)r>   r   r  s     r)   r  ChromaticInterval.__eq__  s*    0 uk**>>U__,r(   c                    [        U 5      S-	  $ r
  r  rW   s    r)   r  ChromaticInterval.__hash__  r  r(   c                4    [        U R                  S-  S5      $ )zt
Return the number of cents in a ChromaticInterval:

>>> dime = interval.ChromaticInterval(0.1)
>>> dime.cents
10.0
r   rJ   )roundr   rW   s    r)   r   ChromaticInterval.cents  s     T^^e+Q//r(   c                    U R                   $ )zj
A synonym for `.semitones`

>>> tritoneDown = interval.ChromaticInterval(-6)
>>> tritoneDown.directed
-6
r   rW   s    r)   r   ChromaticInterval.directed  s     ~~r(   c                ,    [        U R                  5      $ )z
The absolute value of the number of semitones:

>>> tritoneDown = interval.ChromaticInterval(-6)
>>> tritoneDown.undirected
6
)r   r   rW   s    r)   r  ChromaticInterval.undirected	  s     4>>""r(   c                    U R                   S:  a  [        R                  $ U R                   S:  a  [        R                  $ [        R                  $ )z
Returns an enum of the direction:

>>> interval.ChromaticInterval(-3).direction
<Direction.DESCENDING: -1>

note that the number can be helpful for multiplication:

>>> interval.ChromaticInterval(-3).direction * 9
-9
r   )r   r   r&   r$   r%   rW   s    r)   r   ChromaticInterval.direction	  s@     ==1&&&==1'''   r(   c                     U R                   S-  $ )aX  
The number of semitones within an octave using modulo arithmatic.

(see :meth:`~music21.interval.ChromaticInterval.simpleUndirected`
for a similar method that puts musical
intuition above mathematical intuition)

>>> interval.ChromaticInterval(15).mod12
3
>>> interval.ChromaticInterval(-4).mod12
8
>>> interval.ChromaticInterval(-16).mod12
8
r   r  rW   s    r)   mod12ChromaticInterval.mod12"	  s      ~~""r(   c                     U R                   S-  $ )ao  
The number of semitones within an octave while ignoring direction.

(see :meth:`~music21.interval.ChromaticInterval.mod12`
for a similar method that puts mathematical
intuition above musical intuition)

>>> interval.ChromaticInterval(15).simpleUndirected
3
>>> interval.ChromaticInterval(-4).simpleUndirected
4
>>> interval.ChromaticInterval(-16).simpleUndirected
4
r   r   rW   s    r)   r2  "ChromaticInterval.simpleUndirected4	  s      ##r(   c                t    U R                   [        R                  :X  a  SU R                  -  $ U R                  $ )z
The number of semitones within an octave while preserving direction.

>>> interval.ChromaticInterval(15).simpleDirected
3
>>> interval.ChromaticInterval(-4).simpleDirected
-4
>>> interval.ChromaticInterval(-16).simpleDirected
-4
r   )r   r   r$   r2  rW   s    r)   r>   ChromaticInterval.simpleDirectedF	  s3     >>Y111----(((r(   c                F    [        U R                  5      nUS:  a  SU-
  $ U$ )NrK   r   )rU   r  )rX   r  s     r)   intervalClassChromaticInterval.intervalClassW	  s%    DJJ19:Lr(   c                     U R                   S:H  $ )Nr   r   rW   s    r)   isChromaticStep!ChromaticInterval.isChromaticStep_	  s    !##r(   c                    U R                   $ rR   )r   rW   s    r)   r'  ChromaticInterval.isStepc	  s    ###r(   c                L    [        U R                  SU R                  -  -  5      $ )aD  
Return an inverted :class:`~music21.interval.ChromaticInterval`,
that is, reversing the direction.

>>> aInterval = interval.ChromaticInterval(-14)
>>> aInterval.reverse()
<music21.interval.ChromaticInterval 14>

>>> aInterval = interval.ChromaticInterval(3)
>>> aInterval.reverse()
<music21.interval.ChromaticInterval -3>
r   )r  r  r   rW   s    r)   r   ChromaticInterval.reversek	  s!     !B4G!HIIr(   c                F    [        U R                  5      u  p[        X5      $ )aZ  
Given a ChromaticInterval, return a :class:`~music21.interval.DiatonicInterval`
object of the same size.

While there is more than one Generic Interval for any given chromatic
interval, this is needed to permit easy chromatic specification of
Interval objects.  Augmented or diminished intervals are never returned
except for the interval of 6 which returns a diminished fifth, not
augmented fourth.

>>> aInterval = interval.ChromaticInterval(5)
>>> aInterval.getDiatonic()
<music21.interval.DiatonicInterval P4>

>>> aInterval = interval.ChromaticInterval(6)
>>> aInterval.getDiatonic()
<music21.interval.DiatonicInterval d5>

>>> aInterval = interval.ChromaticInterval(7)
>>> aInterval.getDiatonic()
<music21.interval.DiatonicInterval P5>

>>> aInterval = interval.ChromaticInterval(11)
>>> aInterval.getDiatonic()
<music21.interval.DiatonicInterval M7>
)r   r   rz  )rX   r   r   s      r)   r{  ChromaticInterval.getDiatonicz	  s     8 ?t~~N		33r(   Fr   c                   UR                   c  SnOSnUR                  nU(       d  [        R                  " U5      nOUnX@R                  -   Ul        USL a  SUl         U(       d  U$ g)a  
Given a :class:`~music21.pitch.Pitch` object, return a new,
transposed Pitch, that is transformed
according to this ChromaticInterval.

Because :class:`~music21.interval.ChromaticInterval` object
do not take into account diatonic spelling,
the new Pitch is simplified to the most common intervals.  See
:meth:`~music21.pitch.Pitch.simplifyEnharmonic` with ``mostCommon = True``
to see the results.

>>> tritone = interval.ChromaticInterval(6)
>>> p = pitch.Pitch('E#4')
>>> p2 = tritone.transposePitch(p)
>>> p2
<music21.pitch.Pitch B4>
>>> p3 = tritone.transposePitch(p2)
>>> p3
<music21.pitch.Pitch F5>

If no octave number is given then octaves "wrap around" and thus even
after transposing upward, you could end up with a pitch that is
displayed as lower than the original:

>>> p4 = pitch.Pitch('B')
>>> p4.ps
71.0
>>> p5 = tritone.transposePitch(p4)

Since the octave on p4 was implicit, the ps here wraps around

>>> p5.ps
65.0

Afterward, the spelling of the new pitch will always be inferred.

>>> p4.spellingIsInferred
False
>>> p5.spellingIsInferred
True

Can be done inPlace as well:

>>> p = pitch.Pitch('E#4')
>>> tritone.transposePitch(p, inPlace=True)
>>> p
<music21.pitch.Pitch B4>
>>> p.spellingIsInferred
True

* Changed in v6: added inPlace
NTF)r   r   r   r   r   )rX   re  r   rf  ppsr   s         r)   r    ChromaticInterval.transposePitch	  sd    l 88 $ %dd}}Q'HHNN*$"HOO r(   r  )r   )r   int | floatrz   r  r{   r  r  r  r  r  r  r  )r    r!   r"   r#   r|   r   r   r  r  r   r   r   r  r   r  r2  r>  r  r   r'  r   r{  r   r'   r  r  s   @r)   r  r    s   8. ."@
 0 0   # # ! !& # #" $ $" ) )    $ $ $ $J4> 9> F Fr(   r  c                H   SnSU ;   a  U R                  SS5      n SnOSnU R                  5       nSU;   a2  [        R                  " SSU [        R                  R
                  S9n SnO5S	U;   a/  [        R                  " S
SU [        R                  R
                  S9n US;   a  Sn SnO
US;   a  Sn Sn[        [        R                  5       HW  u  pEUR                  5       U;   d  M  [        R                  " SU S3[        U5      U [        R                  R
                  S9n MY     [        R                  " U 5      u  pg [        U5      U-  nUn
[        U5      nUR                  U
5      nXR!                  5       U4$ ! [         a  n	[        SU< SU < S35      U	eSn	A	ff = f)a  
A function for processing interval strings and returning
diatonic and chromatic interval objects. Used by the Interval class, below.
The last entry is a boolean indicating whether the diatonic interval is
inferred (see 'half' and 'whole')

>>> interval._stringToDiatonicChromatic('P5')
(<music21.interval.DiatonicInterval P5>, <music21.interval.ChromaticInterval 7>, False)
>>> interval._stringToDiatonicChromatic('p5')
(<music21.interval.DiatonicInterval P5>, <music21.interval.ChromaticInterval 7>, False)
>>> interval._stringToDiatonicChromatic('perfect5')
(<music21.interval.DiatonicInterval P5>, <music21.interval.ChromaticInterval 7>, False)
>>> interval._stringToDiatonicChromatic('perfect fifth')
(<music21.interval.DiatonicInterval P5>, <music21.interval.ChromaticInterval 7>, False)

>>> interval._stringToDiatonicChromatic('P-5')
(<music21.interval.DiatonicInterval P5>, <music21.interval.ChromaticInterval -7>, False)
>>> interval._stringToDiatonicChromatic('M3')
(<music21.interval.DiatonicInterval M3>, <music21.interval.ChromaticInterval 4>, False)
>>> interval._stringToDiatonicChromatic('m3')
(<music21.interval.DiatonicInterval m3>, <music21.interval.ChromaticInterval 3>, False)

>>> interval._stringToDiatonicChromatic('whole')
(<music21.interval.DiatonicInterval M2>, <music21.interval.ChromaticInterval 2>, True)
>>> interval._stringToDiatonicChromatic('half')
(<music21.interval.DiatonicInterval m2>, <music21.interval.ChromaticInterval 1>, True)
>>> interval._stringToDiatonicChromatic('-h')
(<music21.interval.DiatonicInterval m2>, <music21.interval.ChromaticInterval -1>, True)

>>> interval._stringToDiatonicChromatic('semitone')
(<music21.interval.DiatonicInterval m2>, <music21.interval.ChromaticInterval 1>, True)
F-r   r   r   
descendingzdescending\s*)flags	ascendingzascending\\s*)wwholetoneM2T)hhalfsemitonem2z\s*zCould not find an int in z, from r   N)r   r   resub	RegexFlag
IGNORECASEr   r   rG  rS   getNumFromStrrU   r?   rp   r   r{  r  )rV   inferredr   value_lowerr   ordinalfoundremaingenericNumbervespecName	gInterval	dIntervals                r)   _stringToDiatonicChromaticr)  	  s   H H
e|c2&++-K{"'U",,:Q:QR		#'U",,:Q:QR ,,	1	1 4 45
==?k)FFc'#.q6 !#!8!8E 6 ((/MEE
X- H.I%%h/I,,.88  'yyB
	s   ?E= =
F!FF!c                    [        U 5      [        U5      p2UR                  UR                  -
  n[        U5      n[        U5      $ )a  
Given two :class:`~music21.note.Note` objects,
returns a :class:`~music21.interval.GenericInterval` object.

Works equally well with :class:`~music21.pitch.Pitch` objects

>>> aNote = note.Note('c4')
>>> bNote = note.Note('g5')
>>> aInterval = interval.notesToGeneric(aNote, bNote)
>>> aInterval
<music21.interval.GenericInterval 12>

>>> aPitch = pitch.Pitch('c#4')
>>> bPitch = pitch.Pitch('f-5')
>>> bInterval = interval.notesToGeneric(aPitch, bPitch)
>>> bInterval
<music21.interval.GenericInterval 11>
)r   rd  r   r   )n1n2p1p2r   genDists         r)   notesToGenericr0  5
  s@    , b!=#4""R%7%77I,Y7G7##r(   c                p    [        U 5      [        U5      p2[        UR                  UR                  -
  5      $ )a  
Given two :class:`~music21.note.Note` objects,
returns a :class:`~music21.interval.ChromaticInterval` object.

Works equally well with :class:`~music21.pitch.Pitch` objects.

>>> aNote = note.Note('c4')
>>> bNote = note.Note('g#5')
>>> interval.notesToChromatic(aNote, bNote)
<music21.interval.ChromaticInterval 20>

>>> aPitch = pitch.Pitch('c#4')
>>> bPitch = pitch.Pitch('f-5')
>>> bInterval = interval.notesToChromatic(aPitch, bPitch)
>>> bInterval
<music21.interval.ChromaticInterval 15>
)r   r  r   )r+  r,  r-  r.  s       r)   notesToChromaticr2  Q
  s,    * b!=#4RUURUU]++r(   c                   SnX R                   S-
     SU R                  -  -   nU R                  UR                  :w  aL  U R                  [        R                  :w  a.  UR                  [        R                  :w  a  SUR
                  -  nO)U R
                  S:X  a  UR                  nOUR
                  nUR
                  S:  a  SnOSn[        [        XE-   5      5      nU R                  (       a   [        [        U-   U-
     nU$  [        [         U-   U-
     nU$ ! [         a  n[        S[        XC-
  5      -   5      UeS	nAff = f! [         a  n[        S
[        XC-
  5      -   5      UeS	nAff = f)a  
Given a :class:`~music21.interval.GenericInterval` and
a :class:`~music21.interval.ChromaticInterval` object, return a specifier
(i.e. Specifier.MAJOR, Specifier.MINOR, etc.).

>>> aInterval = interval.GenericInterval('seventh')
>>> bInterval = interval.ChromaticInterval(11)
>>> interval._getSpecifierFromGenericChromatic(aInterval, bInterval)
<Specifier.MAJOR>
>>> interval.parseSpecifier('major')
<Specifier.MAJOR>

Absurdly altered interval:

>>> cInterval = interval.GenericInterval('second')
>>> dInterval = interval.ChromaticInterval(10)  # 8x augmented second
>>> interval._getSpecifierFromGenericChromatic(cInterval, dInterval)
Traceback (most recent call last):
music21.interval.IntervalException: cannot get a specifier for a note with
    this many semitones off of Major: 8
)r   rG   rI   rJ   rL   rN   rP   r   r   r   r   g-C6?g-C6zKcannot get a specifier for a note with this many semitones off of Perfect: NzIcannot get a specifier for a note with this many semitones off of Major: )r2  r5  r   r   r%   r  r   rU   r  rD  r  
perfOffsetrH  rp   rS   
specifiers	majOffset)	gIntcIntnoteValsnormalSemis
theseSemisroundingErrorsemisRoundedr   ies	            r)   !_getSpecifierFromGenericChromaticr?  j
  sw   2 &H00145T=S=S8SSK$..()"3"33)J[J[8[ $//)
	A	]]
 __
 uZ789L	&zL'@;'NOI 	"9|#;k#IJI   	#%'*:+C'DE 	  	##%()A%BC 	s0   0D E 
E%D??E
E0E++E0c                .    [        X5      n[        X 5      $ )a  
Given a :class:`~music21.interval.GenericInterval` and
a :class:`~music21.interval.ChromaticInterval` object,
return a :class:`~music21.interval.DiatonicInterval`.

>>> aInterval = interval.GenericInterval('descending fifth')
>>> bInterval = interval.ChromaticInterval(-7)
>>> cInterval = interval.intervalsToDiatonic(aInterval, bInterval)
>>> cInterval
<music21.interval.DiatonicInterval P5>
)r?  rz  )r7  r8  r   s      r)   intervalsToDiatonicrA  
  s     2$=II,,r(   c                    [        U [        5      (       d  [        U 5      nOU n[        U[        5      (       d  [        U5      nOUn[        X#5      n[	        XB5      n[        XSS9$ )a  
Given a :class:`~music21.interval.GenericInterval` and a
:class:`~music21.interval.ChromaticInterval` object, return
a full :class:`~music21.interval.Interval`.

>>> aInterval = interval.GenericInterval('descending fifth')
>>> bInterval = interval.ChromaticInterval(-8)
>>> cInterval = interval.intervalFromGenericAndChromatic(aInterval, bInterval)
>>> cInterval
<music21.interval.Interval A-5>

>>> cInterval.name
'A5'
>>> cInterval.directedName
'A-5'
>>> cInterval.directedNiceName
'Descending Augmented Fifth'

>>> interval.intervalFromGenericAndChromatic(3, 4)
<music21.interval.Interval M3>
>>> interval.intervalFromGenericAndChromatic(3, 3)
<music21.interval.Interval m3>

>>> interval.intervalFromGenericAndChromatic(5, 6)
<music21.interval.Interval d5>
>>> interval.intervalFromGenericAndChromatic(5, 5)
<music21.interval.Interval dd5>
>>> interval.intervalFromGenericAndChromatic(-2, -2)
<music21.interval.Interval M-2>

>>> interval.intervalFromGenericAndChromatic(1, 0.5)
<music21.interval.Interval A1 (-50c)>

r  )r   r   r  r?  rz  r   )r7  r8  gIntVcIntVr   dInts         r)   intervalFromGenericAndChromaticrF  
  s]    N dO,,%d-..!$'1%?II-DT33r(   c            	        ^  \ rS rSrSr  S1SSSSSSSS.                 S2U 4S jjjjrS rU 4S jrS r\	S3S	 j5       r
\	S4S
 j5       r\	S4S j5       r\	S4S j5       r\	S4S j5       r\	S4S j5       r\	S4S j5       r\	S4S j5       r\	S4S j5       r\	S4S j5       r\	S4S j5       r\	S5S j5       r\	S6S j5       r\	S7S j5       r\	S4S j5       r\	S8S j5       r\	S8S j5       r\	S8S j5       r\	S8S j5       rS8S jr\	S9S j5       r\	S:S j5       r\	S;S j5       r S;S  jr!S!S"S!S#.   S<S$ jjr"S!S%.     S=S& jjr#S' r$\	S>S( j5       r%\%RL                  S?S) j5       r%\	S>S* j5       r'\'RL                  S@S+ j5       r'\	SAS, j5       r(\(RL                  SBS- j5       r(\	SAS. j5       r)\)RL                  SBS/ j5       r)S0r*U =r+$ )Cr   i
  a  
An Interval class that encapsulates both
:class:`~music21.interval.ChromaticInterval` and
:class:`~music21.interval.DiatonicInterval` objects all in one model.

The interval is specified either as named arguments, a
:class:`~music21.interval.DiatonicInterval` and
a :class:`~music21.interval.ChromaticInterval`,
or two :class:`~music21.note.Note` objects
(or :class:`~music21.interval.Pitch` objects),
from which both a ChromaticInterval and DiatonicInterval are derived.

>>> p1 = pitch.Pitch('c3')
>>> p2 = pitch.Pitch('c5')
>>> aInterval = interval.Interval(pitchStart=p1, pitchEnd=p2)
>>> aInterval
<music21.interval.Interval P15>
>>> aInterval.name
'P15'
>>> aInterval.pitchStart is p1
True
>>> aInterval.pitchEnd is p2
True

Reduce to less than an octave:

>>> aInterval.simpleName
'P1'

Reduce to no more than an octave:

>>> aInterval.semiSimpleName
'P8'

An interval can also be specified directly:

>>> aInterval = interval.Interval('m3')
>>> aInterval
<music21.interval.Interval m3>
>>> aInterval = interval.Interval('M3')
>>> aInterval
<music21.interval.Interval M3>

>>> aInterval = interval.Interval('p5')
>>> aInterval
<music21.interval.Interval P5>
>>> aInterval.isChromaticStep
False
>>> aInterval.isDiatonicStep
False
>>> aInterval.isStep
False

Some ways of creating half-steps.

>>> aInterval = interval.Interval('half')
>>> aInterval
<music21.interval.Interval m2>
>>> aInterval.isChromaticStep
True
>>> aInterval.isDiatonicStep
True
>>> aInterval.isStep
True

>>> aInterval = interval.Interval('-h')
>>> aInterval
<music21.interval.Interval m-2>
>>> aInterval.directedName
'm-2'
>>> aInterval.name
'm2'

A single int is treated as a number of half-steps:

>>> aInterval = interval.Interval(4)
>>> aInterval
<music21.interval.Interval M3>

>>> aInterval = interval.Interval(7)
>>> aInterval
<music21.interval.Interval P5>

If giving a starting pitch, an ending pitch has to be specified.

>>> aInterval = interval.Interval(pitchStart=p1)
Traceback (most recent call last):
ValueError: either both the starting and the ending pitch (or note) must be given
    or neither can be given. You cannot have one without the other.

An Interval can be constructed from a DiatonicInterval and ChromaticInterval
object (or just one):

>>> diaInterval = interval.DiatonicInterval('major', 'third')
>>> chrInterval = interval.ChromaticInterval(4)
>>> fullInterval = interval.Interval(diatonic=diaInterval, chromatic=chrInterval)
>>> fullInterval
<music21.interval.Interval M3>

>>> fullInterval = interval.Interval(diatonic=diaInterval)
>>> fullInterval.semitones
4
>>> fullInterval = interval.Interval(chromatic=chrInterval)
>>> fullInterval.diatonic.name
'M3'
>>> fullInterval.implicitDiatonic
True

Two Intervals are the same if their Chromatic and Diatonic intervals
are the same.

>>> aInt = interval.Interval('P4')
>>> bInt = interval.Interval(
...        diatonic=interval.DiatonicInterval('P', 4),
...        chromatic=interval.ChromaticInterval(5),
...        )
>>> aInt == bInt
True

N.B. that interval.Interval('A4') != 'A4'

>>> interval.Interval('A4') == 'A4'
False

More demonstrations using pitches:

>>> aPitch = pitch.Pitch('c4')
>>> bPitch = pitch.Pitch('g5')
>>> aInterval = interval.Interval(aPitch, bPitch)
>>> aInterval
<music21.interval.Interval P12>
>>> bInterval = interval.Interval(pitchStart=aPitch, pitchEnd=bPitch)
>>> aInterval.niceName == bInterval.niceName
True

>>> aPitch = pitch.Pitch('c#4')
>>> bPitch = pitch.Pitch('f-5')
>>> cInterval = interval.Interval(aPitch, bPitch)
>>> cInterval
<music21.interval.Interval dd11>

>>> cPitch = pitch.Pitch('e#4')
>>> dPitch = pitch.Pitch('f-4')
>>> dInterval = interval.Interval(cPitch, dPitch)
>>> dInterval
<music21.interval.Interval dd2>

>>> ePitch = pitch.Pitch('e##4')
>>> fPitch = pitch.Pitch('f--4')
>>> dInterval = interval.Interval(ePitch, fPitch)
>>> dInterval
<music21.interval.Interval dddd2>

>>> gPitch = pitch.Pitch('c--4')
>>> hPitch = pitch.Pitch('c##4')
>>> iInterval = interval.Interval(gPitch, hPitch)
>>> iInterval
<music21.interval.Interval AAAA1>

>>> interval.Interval(pitch.Pitch('e##4'), pitch.Pitch('f--5'))
<music21.interval.Interval dddd9>

* Changed in v8:
  - Pitches are emphasized over notes.
  - It is not possible to create an interval with a name and a pitchStart/noteStart
  and automatically get a pitchEnd/noteEnd in the process.  Set them later.
  - Incompatible keywords raise ValueError not IntervalException.
  - An empty instantiation gives a P1 interval.

OMIT_FROM_DOCS

>>> aInterval = interval.Interval('M2')
>>> aInterval.isChromaticStep
False
>>> aInterval.isDiatonicStep
True
>>> aInterval.isStep
True

>>> aInterval = interval.Interval('dd3')
>>> aInterval.isChromaticStep
True
>>> aInterval.isDiatonicStep
False
>>> aInterval.isStep
True

This is in OMIT_FROM_etc. put changelog above.
N)r  r  
pitchStartpitchEnd	noteStartnoteEndr^   c              b  > [         TU ]  " S0 U
D6  SU l        Ub  Uc  [        S5      e[	        U5      nUbJ  [        U[        5      (       a  Un	O2[        U[        [        45      (       a  [        U5      nO[	        U5      nU(       a  U(       d  U(       a  U(       a  [        S5      eU(       a  [	        U5      nU(       a  [	        U5      nU(       a  U(       a  U(       a  U(       d  [        S5      eU(       aJ  U(       aC  [        XV5      n[        XV5      n[        X5      nU(       d  U(       a  XL:w  a  [        S5      eUnUnU	(       a<  [        U	5      u  pnU(       d  U(       a  XL:w  d  X=:w  a  [        S5      eUnUnXl        OjU(       a  U(       d  UR                  5       nSU l        ODU(       a  U(       d  UR                  5       nO%U(       d  U(       d  [!        SS	5      n[        S
5      n["        R$                  (       a
  Uc   eUc   eX0l        X@l        XPl        X`l        SU l        g )NFz-Cannot supply a second value without a first.z;Cannot instantiate an interval with both notes and pitches.zeither both the starting and the ending pitch (or note) must be given or neither can be given.  You cannot have one without the other.znDo not pass in pitches/notes and diatonic/chromatic interval objects, unless they represent the same interval.zxDo not pass in a name and pitches/notes or diatonic/chromatic interval objects, unless they represent the same interval.Tr3   r   r   r   r   )r   r   implicitDiatonicr?   r   r   rS   rU   r  r  r0  r2  rA  r)  r{  r  rz  r   TYPE_CHECKINGr  r  _pitchStart	_pitchEndintervalType)rX   arg0arg1r  r  rH  rI  rJ  rK  r^   r   genericIntervalchromaticNewdiatonicNewr  r   s                  r)   r   Interval.__init__  s   $ 	$8$ ',| !PQQ$T*H$$$D3,//-d3	*40
:Z[[&y1J$W-HxXj[  (,ZBO+JAL-oLKX9+D S  %I"H2LT2R/KxXI,EI` S  %I"H$,!x ,,.H$(D!i --/I)'Q/H)!,I ??'''(((*2,5 .8+3BDr(   c                    SSK Jn   U R                  5       nUS:w  a-  UR                  " U5      nU R
                  S-   [        U5      -   $ U R
                  $ ! [         a     gf = f)Nr   r   r   r  )rj  r   _diatonicIntervalCentShiftAttributeError	Microtoner  rS   )rX   r   shiftr   s       r)   r   Interval._reprInternal  si    !	335E A:OOE*E$$s*SZ77$$$  		s   A 
A$#A$c                   > [         TU ]  U5      (       d  gU R                  UR                  :X  a  U R                  UR                  :X  a  gg)a}  
True if .diatonic and .chromatic are equal.

>>> a = interval.Interval('a4')
>>> b = interval.Interval('d5')
>>> c = interval.Interval('m3')
>>> d = interval.Interval('d5')
>>> a == b
False
>>> b == d
True
>>> a == c
False
>>> b in [a, c, d]
True

Now, of course, this makes sense:

>>> a == 'hello'
False

But note well that this is also a False expression:

>>> a == 'a4'
False
FT)r   r  r  r  )rX   r  r   s     r)   r  Interval.__eq__)  s=    6 w~e$$MMU^^+NNeoo5r(   c                    [        U 5      S-	  $ r
  r  rW   s    r)   r  Interval.__hash__L  r  r(   c                .    U R                   R                  $ )z
Returns the :class:`~music21.interval.GenericInterval` object
associated with this Interval

>>> interval.Interval('P5').generic
<music21.interval.GenericInterval 5>
)r  r   rW   s    r)   r   Interval.genericQ  s     }}$$$r(   c                .    U R                   R                  $ )z{
Return the simple name of the interval, ignoring direction:

>>> interval.Interval('Descending Perfect Fourth').name
'P4'
)r  r^   rW   s    r)   r^   Interval.name\  s     }}!!!r(   c                .    U R                   R                  $ )z4
>>> interval.Interval('m3').niceName
'Minor Third'
)r  rc   rW   s    r)   rc   Interval.niceNamef  s     }}%%%r(   c                .    U R                   R                  $ rR   )r  r  rW   s    r)   r  Interval.simpleNamen  s    }}'''r(   c                .    U R                   R                  $ rR   )r  rP  rW   s    r)   rP  Interval.simpleNiceNamer      }}+++r(   c                .    U R                   R                  $ rR   )r  r  rW   s    r)   r  Interval.semiSimpleNamev  rl  r(   c                .    U R                   R                  $ rR   )r  rS  rW   s    r)   rS  Interval.semiSimpleNiceNamez      }}///r(   c                .    U R                   R                  $ rR   )r  r  rW   s    r)   r  Interval.directedName~      }})))r(   c                .    U R                   R                  $ rR   )r  r  rW   s    r)   r  Interval.directedNiceName  s    }}---r(   c                .    U R                   R                  $ rR   )r  r  rW   s    r)   r  Interval.directedSimpleName  rq  r(   c                .    U R                   R                  $ rR   )r  r  rW   s    r)   r  Interval.directedSimpleNiceName  s    }}333r(   c                .    U R                   R                  $ rR   )r  r   rW   s    r)   r   Interval.semitones      ~~'''r(   c                .    U R                   R                  $ rR   )r  r   rW   s    r)   r   Interval.direction  r}  r(   c                .    U R                   R                  $ rR   )r  r   rW   s    r)   r   Interval.specifier  s    }}&&&r(   c                .    U R                   R                  $ rR   )r  r  rW   s    r)   r  Interval.specificName  rt  r(   c                .    U R                   R                  $ rR   )r  r$  rW   s    r)   r$  Interval.isDiatonicStep  rl  r(   c                .    U R                   R                  $ rR   )r  r   rW   s    r)   r   Interval.isChromaticStep  s    ~~---r(   c                @    U R                   =(       d    U R                  $ rR   )r   r$  rW   s    r)   r'  Interval.isStep  s    ##:t':'::r(   c                .    U R                   R                  $ rR   )r  r!  rW   s    r)   r!  Interval.isSkip  s    }}###r(   c                &    U R                   S;   a  gg)ay  
returns True if the pitches are a major or
minor third or sixth or perfect fifth or unison.

These rules define all common-practice consonances
(and earlier back to about 1300 all imperfect consonances)

>>> i1 = interval.Interval(note.Note('C'), note.Note('E'))
>>> i1.isConsonant()
True
>>> i1 = interval.Interval(note.Note('B-'), note.Note('C'))
>>> i1.isConsonant()
False
)r   m3M3m6M6P1TF)r  rW   s    r)   isConsonantInterval.isConsonant  s     ??BBr(   c                @    [        U R                  R                  5      $ )aX  
Return a new :class:`~music21.interval.Interval` object that is the
complement of this Interval.

>>> aInterval = interval.Interval('M3')
>>> bInterval = aInterval.complement
>>> bInterval
<music21.interval.Interval m6>

>>> cInterval = interval.Interval('A2')
>>> dInterval = cInterval.complement
>>> dInterval
<music21.interval.Interval d7>
)r   r  rY  rW   s    r)   r_  Interval.complement  s      3344r(   c                .    U R                   R                  $ )a  
Return the interval class from the chromatic interval,
that is, the lesser of the number of half-steps in the
simpleInterval or its complement.

>>> aInterval = interval.Interval('M3')
>>> aInterval.intervalClass
4

>>> bInterval = interval.Interval('m6')
>>> bInterval.intervalClass
4

Empty intervals return 0:

>>> interval.Interval().intervalClass
0

* Changed in v6.5: empty intervals return 0
)r  r  rW   s    r)   r  Interval.intervalClass  s    , ~~+++r(   c                .    U R                   R                  $ )ax  
Return the cents from the chromatic interval, where 100 cents = a half-step

>>> aInterval = interval.Interval('M3')
>>> aInterval.cents
400.0

>>> p1 = pitch.Pitch('C4')
>>> p2 = pitch.Pitch('D4')
>>> p2.microtone = 30
>>> microtoneInterval = interval.Interval(pitchStart=p1, pitchEnd=p2)
>>> microtoneInterval.cents
230.0

OMIT_FROM_DOCS

>>> interval.Interval().cents
0.0
)r  r   rW   s    r)   r   Interval.cents  s    * ~~###r(   c                b    U R                   R                  nU R                  R                  nX!-
  $ )z
Return the number of cents the diatonic
interval needs to be shifted to
correspond to microtonal value specified
in the chromatic interval.
)r  r   r  )rX   dCentscCentss      r)   rY  #Interval._diatonicIntervalCentShift  s*     $$%%r(   FrI   )r   maxAccidentalr   c                  U(       a  U R                  5       R                  XUS9$ Uc  SnU R                  (       a  U R                  R                  UUS9nOU R	                  UUUS9nUR
                  bG  U R                  UR
                  US9Ul        UR
                  R                  c  SUR
                  l        U(       d  U$ g)al  
Given a :class:`~music21.pitch.Pitch` object, return a new,
transposed Pitch, that is transformed
according to this Interval. This is the main public interface to all
transposition routines found on higher-level objects.

The `maxAccidental` parameter sets an integer number of half step
alterations that will be accepted in the transposed pitch before it
is simplified. For example,
a value of 2 will permit double sharps but not triple sharps.  The
maxAccidental default is 4, because music21 does not support quintuple
sharps/flats.  Set to None to try anyhow.

>>> p1 = pitch.Pitch('A#4')
>>> i = interval.Interval('m3')
>>> p2 = i.transposePitch(p1)
>>> p2
<music21.pitch.Pitch C#5>
>>> p2 = i.transposePitch(p1, reverse=True)
>>> p2
<music21.pitch.Pitch F##4>
>>> i.transposePitch(p1, reverse=True, maxAccidental=1)
<music21.pitch.Pitch G4>

`Pitch` objects without octaves are transposed also into
objects without octaves.  This might make them appear to be
lower than the original even if transposed up:

>>> anyA = pitch.Pitch('A')
>>> anyC = i.transposePitch(anyA)
>>> anyC
<music21.pitch.Pitch C>
>>> anyC.ps < anyA.ps  # !!
True

If inPlace is True then function is done in place and no pitch is returned.

>>> p1 = pitch.Pitch('A4')
>>> i = interval.Interval('m3')
>>> i.transposePitch(p1, inPlace=True)
>>> p1
<music21.pitch.Pitch C5>

Note that reverse=True is only there for historical reasons;
it is the same as `i.reverse().transposePitch(x)` and that format
will be much faster when calling many times.

* Changed in v6: inPlace parameter added.  Reverse and maxAccidental
  changed to keyword only.

OMIT_FROM_DOCS

TODO: More tests here, esp. on fundamental.

>>> p1 = pitch.Pitch('C4')
>>> i = interval.Interval(1)  # half-step, regardless of diatonic
>>> p2 = i.transposePitch(p1)
>>> p2
<music21.pitch.Pitch C#4>
>>> p3 = i.transposePitch(p2)
>>> p3
<music21.pitch.Pitch D4>
)r  r   Ni r   )r  )r   r   rM  r  _diatonicTransposePitchfundamentalr   )rX   re  r   r  r   pOuts         r)   r   Interval.transposePitch  s    J <<>00Y`0aa !M  >>00 1 D
 //+ 0 D ==$#22+  3  D
 }}##+*.  'K r(   r   c                  SnU R                   S:X  a7  [        U R                  5      [        [        U R                  5      5      :X  a  SnUR                  c  SnOSnUn[
        R                  " U5      nUR                  nU R                  R                  R                  n	X-   n
[        U
5      u  pXl        Xl        UR                  nSUl        SUl        [        Xg5      nU R                   R                  UR                   R                  -
  nUS:w  GaY  US:  a!  US-
  nUR                  S-
  Ul        US:  a  M!  [#        U5      U:  a  UR$                  U-   Ul        OXl        U(       dQ  UR                  bC  UR                  b6  UR                  R'                  UR                  5        SUR                  l        OUR                  c^  UR                  bP  SUl        [*        R,                  (       a  UR                  c   eUR                  R'                  UR                  5        OeUR                  b&  UR                  R'                  UR                  5        O2SUR                  l        O U(       a  Ub  UR.                  S:X  a  Xl        U(       a  SUl        U(       d  U$ UR.                  Ul        UR                  Ul        U$ )	z
abstracts out the diatonic aspects of transposing, so that implicitDiatonic and
regular diatonic can use some of the same code.

PRIVATE METHOD: Return p even if inPlace is True
Fr  TNr   r   r   natural)r  r  r   rU   r   r   r   rd  r  r   rV  r   rl  rn  	microtoner   r  r   r   inheritDisplaydisplayStatusr   rN  r^   )rX   re  r  r   inheritAccidentalDisplayStatusrf  r   pitch2oldDiatonicNumdistanceToMovenewDiatonicNumbernewStep	newOctaveoldPitch2Accidental	interval2halfStepsToFixs                   r)   r   Interval._diatonicTransposePitchu  sd    05&??d"uT^^'<c$..FY@Z'Z-1*88 $ %v&//..<<*;89JK!$//  V,	11I4G4G4Q4QQ
 Q B&!/"!4 & 1 !B&
 >"]2 #II6	$2!1$$0V5F5F5R%%44V5F5FG6:F%%3 $$,((4,-)??#)#4#4#@@#@))889J9JK((4))889J9JK:?))7 . (3/44	A(;% FMM ++FK"MMFMMr(   c                    U R                   b+  U R                  b  [        U R                  U R                   S9$ [        U R                  R	                  5       U R
                  R	                  5       S9$ )a  
Return a reversed version of this interval.
If :class:`~music21.pitch.Pitch` objects are stored as
`pitchStart` and `pitchEnd`, these pitches are reversed.

>>> p1 = pitch.Pitch('c3')
>>> p2 = pitch.Pitch('g3')
>>> intvP5 = interval.Interval(pitchStart=p1, pitchEnd=p2)
>>> intvP5
<music21.interval.Interval P5>
>>> revInterval = intvP5.reverse()
>>> revInterval
<music21.interval.Interval P-5>
>>> revInterval.pitchStart is intvP5.pitchEnd
True

>>> m3 = interval.Interval('m3')
>>> m3.reverse()
<music21.interval.Interval m-3>
rJ  rK  r  )rO  rP  r   r  r   r  rW   s    r)   r   Interval.reverse  s^    * 'DNN,Fdnnd>N>NOOT]]%:%:%<&*nn&<&<&>@ @r(   c                    U R                   $ )a  
Get the start pitch or set it a new value.
Setting this will adjust the value of the end pitch (`pitchEnd`).

>>> maj3 = interval.Interval('M3')
>>> maj3.pitchStart = pitch.Pitch('c4')
>>> maj3.pitchEnd.nameWithOctave
'E4'

>>> p1 = pitch.Pitch('c3')
>>> p2 = pitch.Pitch('g#3')
>>> a5 = interval.Interval(p1, p2)
>>> a5.name
'A5'

>>> a5.pitchStart = pitch.Pitch('g4')
>>> a5.pitchEnd.nameWithOctave
'D#5'

>>> descM3 = interval.Interval('-M3')
>>> descM3.pitchStart = pitch.Pitch('c4')
>>> descM3.pitchEnd.nameWithOctave
'A-3'

>>> descM2 = interval.Interval('M-2')
>>> descM2.pitchStart = pitch.Pitch('A#3')
>>> descM2.pitchEnd.nameWithOctave
'G#3'

Implicit diatonic intervals do not need to
follow the diatonic directed name:

>>> halfStep = interval.Interval('h')
>>> halfStep.directedName
'm2'
>>> halfStep.implicitDiatonic
True
>>> halfStep.pitchStart = pitch.Pitch('F-3')
>>> halfStep.pitchEnd.nameWithOctave
'F3'
)rO  rW   s    r)   rH  Interval.pitchStart  s    V r(   c                b    Uc  SU l         SU l        gU R                  U5      nXl         X l        g)z
Assuming that this interval is defined,
we can set a new start Pitch (_pitchStart) and
automatically set the end Pitch (_pitchEnd).
NrO  rP  r   )rX   re  r  s      r)   rH  r  $  s8     9#D!DN $$Q'r(   c                    U R                   $ )a  
Set the
end pitch to a new value; this will adjust
the value of the start pitch (`pitchStart`).

>>> aInterval = interval.Interval('M3')
>>> aInterval.pitchEnd = pitch.Pitch('E4')
>>> aInterval.pitchStart.nameWithOctave
'C4'

>>> aInterval = interval.Interval('m2')
>>> aInterval.pitchEnd = pitch.Pitch('A#3')
>>> aInterval.pitchStart.nameWithOctave
'G##3'

>>> p1 = pitch.Pitch('G#3')
>>> p2 = pitch.Pitch('C3')
>>> aInterval = interval.Interval(p1, p2)
>>> aInterval.directedName  # downward augmented fifth
'A-5'
>>> aInterval.pitchEnd = pitch.Pitch('C4')
>>> aInterval.pitchStart.nameWithOctave
'G#4'

>>> aInterval = interval.Interval('M3')
>>> aInterval.pitchEnd = pitch.Pitch('A-3')
>>> aInterval.pitchStart.nameWithOctave
'F-3'
)rP  rW   s    r)   rI  Interval.pitchEnd7  s    > ~~r(   c                `    Uc  SU l         SU l        gU R                  USS9nXl        X l         g)z
Assuming that this interval is defined, we can
set a new end note (_pitchEnd) and automatically have the start pitch (_pitchStart).
NT)r   r  )rX   re  r   s      r)   rI  r  X  s=     9#D!DN $$Q$5!r(   c                    U R                   nU(       a  UR                  (       a  UR                  $ U(       a  SSKJn  UR                  " US9$ g)zU
Return or set the Note that pitchStart is attached to.  For
backwards compatibility
r   r   r   N)rH  r   rj  r   NoterX   re  r   s      r)   rJ  Interval.noteStartj  s8     OO99$991%%r(   c                D    U(       a  UR                   U l        g S U l        g rR   )r   rH  rX   r   s     r)   rJ  r  y  s    ggDO"DOr(   c                    U R                   nU(       a  UR                  (       a  UR                  $ U(       a  SSKJn  UR                  " US9$ g)zS
Return or set the Note that pitchEnd is attached to.  For
backwards compatibility
r   r   r   N)rI  r   rj  r   r  r  s      r)   rK  Interval.noteEnd  s8     MM99$991%%r(   c                D    U(       a  UR                   U l        g S U l        g rR   )r   rI  r  s     r)   rK  r    s    GGDM DMr(   )rP  rO  r  r  rM  rQ  rI  rH  )NN)rR  z6t.Union[str, int, float, pitch.Pitch, note.Note, None]rS  zpitch.Pitch | note.Note | Noner  zDiatonicInterval | Noner  zChromaticInterval | NonerH  pitch.Pitch | NonerI  r  rJ  note.Note | pitch.Pitch | NonerK  r  r^   z
str | Noner  rz   r  )r{   zDirection | None)r{   zSpecifier | Noner  r{   r   r  r  )re  r   r  z
int | None)re  r   r  rU   r   r   )r{   r  )re  r  r{   None)re  zmusic21.pitch.Pitch | Noner{   r  )r{   music21.note.Note | None)r   r  r{   r  ),r    r!   r"   r#   r|   r   r   r  r  r   r   r^   rc   r  rP  r  rS  r  r  r  r  r   r   r   r  r$  r   r'  r!  r  r_  r  r   rY  r   r  r   rH  r  rI  rJ  rK  r'   r  r  s   @r)   r   r   
  s   |F (,48_E 485904.29=7;"&!_E%_E 2_E 1_E 3_E ._E ,_E 7_E 5_E   !_E _EB%!F
 % % " " & & ( ( , , , , 0 0 * * . . 0 0 4 4 ( ( ( ( ' ' * * , , . . ; ; $ $
( 5 5" , ,. $ $,	  %12$c%c '/	cR 16	e#.e 03e *.	eN@6 *  * X    $  @ __" ""   # #   ^^! !r(   c                    g rR   r   r@   s     r)   getWrittenHigherNoter         r(   c                    g rR   r   r@   s     r)   r  r    r  r(   c                    [        X5        [        U 5      [        U5      p2UR                  nUR                  nXE:  a  U $ XE:  a  U$ [        X5      $ )a  
Given two :class:`~music21.pitch.Pitch` or :class:`~music21.note.Note` objects,
this function returns the higher element based on diatonic note
numbers. If the diatonic numbers are
the same, returns the sounding higher element,
or the first element if that is also the same.

>>> cis = pitch.Pitch('C#')
>>> deses = pitch.Pitch('D--')
>>> higher = interval.getWrittenHigherNote(cis, deses)
>>> higher is deses
True

>>> aPitch = pitch.Pitch('c#3')
>>> bPitch = pitch.Pitch('d-3')
>>> interval.getWrittenHigherNote(aPitch, bPitch)
<music21.pitch.Pitch D-3>

>>> aNote = note.Note('c#3')
>>> bNote = note.Note('c3')
>>> interval.getWrittenHigherNote(aNote, bNote) is aNote
True
)rC   r   rd  getAbsoluteHigherNoterA   rB   r-  r.  num1num2s         r)   r  r    sR    4 e$mE&:DD{	$U22r(   c                    g rR   r   r@   s     r)   r  r    r  r(   c                    g rR   r   r@   s     r)   r  r    r  r(   c                j    [        X5        [        X5      nUR                  nUS:  a  U$ US:  a  U $ U $ )aQ  
Given two :class:`~music21.pitch.Pitch` or :class:`~music21.note.Note` objects,
returns the higher element based on sounding pitch.
If both sounding pitches are the same, returns the first element given.

>>> aNote = note.Note('c#3')
>>> bNote = note.Note('d--3')
>>> interval.getAbsoluteHigherNote(aNote, bNote)
<music21.note.Note C#>
r   rC   r2  r   rA   rB   r  r   s       r)   r  r    >      .I##I1}	Qr(   c                    g rR   r   r@   s     r)   getWrittenLowerNoter    r  r(   c                    g rR   r   r@   s     r)   r  r    r  r(   c                    [        X5        [        U 5      [        U5      p2UR                  nUR                  nXE:  a  U $ XE:  a  U$ [        X5      $ )a  
Given two :class:`~music21.pitch.Pitch` or :class:`~music21.note.Note` objects,
returns the lower element based on diatonic note
number. If the diatonic number is
the same returns the sounding lower element,
or the first element if sounding pitch is also the same.

>>> aNote = pitch.Pitch('C#3')
>>> bNote = pitch.Pitch('D--3')
>>> interval.getWrittenLowerNote(aNote, bNote)
<music21.pitch.Pitch C#3>

>>> aNote = pitch.Pitch('C#3')
>>> bNote = pitch.Pitch('D-3')
>>> interval.getWrittenLowerNote(aNote, bNote)
<music21.pitch.Pitch C#3>

Both elements should be pitches or notes -- if note2 is lower and not the same class
as note1 raises a ValueError:

>>> aNote = pitch.Pitch('C#4')
>>> bNote = note.Note('C#3')
>>> interval.getWrittenLowerNote(aNote, bNote)
Traceback (most recent call last):
ValueError: note1 <music21.pitch.Pitch C#4>
    and note2 <music21.note.Note C#> must both be notes or pitches
)rC   r   rd  getAbsoluteLowerNoter  s         r)   r  r    sR    < e$mE&:DD{	#E11r(   c                    g rR   r   r@   s     r)   r  r  )  r  r(   c                    g rR   r   r@   s     r)   r  r  /  r  r(   c                j    [        X5        [        X5      nUR                  nUS:  a  U $ US:  a  U$ U $ )aL  
Given two :class:`~music21.note.Note` or :class:`~music21.pitch.Pitch` objects, returns
the lower element based on actual pitch.
If both pitches are the same, returns the first element given.

>>> aNote = pitch.Pitch('c#3')
>>> bNote = pitch.Pitch('d--3')
>>> interval.getAbsoluteLowerNote(aNote, bNote)
<music21.pitch.Pitch D--3>
r   r  r  s       r)   r  r  6  r  r(   Fr   c                   [        U[        [        45      (       a  [        U5      nO?[	        US5      (       d.  [        SR                  UR                  R                  5      5      eUR                  XS9$ )a  
DEPRECATED: call `p.transpose(interval1)` directly

Given a :class:`~music21.pitch.Pitch`
and a :class:`~music21.interval.Interval` object (Not another class such
as ChromaticInterval) or a string such as 'P5' or a number such as 6 (=tritone),
return a new Pitch object at the appropriate pitch level.

>>> aPitch = pitch.Pitch('C4')
>>> P5 = interval.Interval('P5')
>>> bPitch = interval.transposePitch(aPitch, P5)
>>> bPitch
<music21.pitch.Pitch G4>
>>> bInterval = interval.Interval('P-5')
>>> cPitch = interval.transposePitch(aPitch, bInterval)
>>> cPitch
<music21.pitch.Pitch F3>

Pitches with implicit octaves should work,

>>> dPitch = pitch.Pitch('G')
>>> ePitch = interval.transposePitch(dPitch, P5)
>>> ePitch
<music21.pitch.Pitch D>

Can be done inPlace as well

>>> C4 = pitch.Pitch('C4')
>>> interval.transposePitch(C4, P5, inPlace=True)
>>> C4
<music21.pitch.Pitch G4>

* Changed in v6: added inPlace parameter
r   z:interval must be a music21.interval.Interval object not {}r   )
r   rS   rU   r   r>   rp   formatr   r    r   )r   	interval1r   s      r)   r   r   N  sn    V )c3Z((Y'	y"233#LSS''0023 3 ##F#<<r(   c                    [        U[        5      (       d  [        U5      nOUnUR                  U R                  5      n[        R
                  " U 5      nX4l        U$ )a  
To be deprecated: call `n.transpose(intervalString)` directly.

Given a :class:`~music21.note.Note` and
an interval string (such as 'P5') or an Interval object,
return a new Note object at the appropriate pitch level.

>>> aNote = note.Note('c4')
>>> bNote = interval.transposeNote(aNote, 'p5')
>>> bNote
<music21.note.Note G>
>>> bNote.pitch
<music21.pitch.Pitch G4>

>>> aNote = note.Note('f#4')
>>> bNote = interval.transposeNote(aNote, 'm2')
>>> bNote
<music21.note.Note G>
)r   r   r   r   r   r   )rA   intervalStringintvr   r   s        r)   r   r     sL    , nh//'""5;;/HmmE"GMNr(   c                    [        XS9$ )a  
Soon to be DEPRECATED: Call Interval Directly

Given two :class:`~music21.note.Note` objects, returns an
:class:`~music21.interval.Interval` object. The same
functionality is available by calling the Interval class
with two Notes as arguments.

>>> aNote = note.Note('c4')
>>> bNote = note.Note('g5')
>>> aInterval = interval.notesToInterval(aNote, bNote)
>>> aInterval
<music21.interval.Interval P12>
r  )r   )r+  r,  s     r)   notesToIntervalr    s     b--r(   c                    SSK Jn  U (       d  [        S5      eUR                  " S5      nUR                  " S5      nU  H  n[	        X45      nM     [        X#S9$ )a  
Add a list of intervals and return the composite interval
Intervals can be Interval objects or just strings.

(Currently not particularly efficient for large lists)

>>> A2 = interval.Interval('A2')
>>> P5 = interval.Interval('P5')

>>> interval.add([A2, P5])
<music21.interval.Interval A6>
>>> interval.add([P5, 'm2'])
<music21.interval.Interval m6>
>>> interval.add(['W', 'W', 'H', 'W', 'W', 'W', 'H'])
<music21.interval.Interval P8>

Direction does matter:

>>> interval.add([P5, 'P-4'])
<music21.interval.Interval M2>
r   r   $Cannot add an empty set of intervalsC4r  )rj  r   rp   r   r   r   )intervalListr   r-  r.  r   s        r)   addr    sQ    ,  FGG	T	B	T	BB" b--r(   c                J   SSK Jn  U (       d  [        S5      eUR                  " S5      nUR                  " S5      n[	        U 5       HP  u  pEUS:X  a  [        X55      nM  [        US5      (       d  [        U5      nOUn[        X6R                  5       5      nMR     [        X#S9$ )a  
Starts with the first interval and subtracts the
following intervals from it:

>>> interval.subtract(['P5', 'M3'])
<music21.interval.Interval m3>
>>> interval.subtract(['P4', 'd3'])
<music21.interval.Interval A2>

>>> m2Object = interval.Interval('m2')
>>> interval.subtract(['M6', 'm2', m2Object])
<music21.interval.Interval AA4>
>>> interval.subtract(['P4', 'M-2'])
<music21.interval.Interval P5>
>>> interval.subtract(['A2', 'A2'])
<music21.interval.Interval P1>
>>> interval.subtract(['A1', 'P1'])
<music21.interval.Interval A1>

>>> interval.subtract(['P8', 'P1'])
<music21.interval.Interval P8>
>>> interval.subtract(['P8', 'd2'])
<music21.interval.Interval A7>
>>> interval.subtract(['P8', 'A1'])
<music21.interval.Interval d8>


>>> a = interval.subtract(['P5', 'A5'])
>>> a.niceName
'Diminished Unison'
>>> a.directedNiceName
'Descending Diminished Unison'
>>> a.chromatic.semitones
-1

r   r   r  r  r  r  )	rj  r   rp   r   r   r   r>   r   r   )r  r   r+  r,  r   intIr   s          r)   subtractr    s    J  FGG	T	B	T	B\*6)B4--&tn"$7$7$9:B + b--r(   __main__)rA   note.Note | pitch.PitchrB   r  r{   r  )r   r  r{   r   )r   rU   r{   ztuple[StepName, int])rV   zstr | int | Specifierr{   rE   )rV   r~  r{   rU   )r   r  r{   ztuple[Specifier, int, float])r   r  r{   ztuple[Specifier, int])r   r   r{   r   )rV   rS   r{   z0tuple[DiatonicInterval, ChromaticInterval, bool])r+  pitch.Pitch | note.Noter,  r  r{   r   )r+  r  r,  r  r{   r  )r7  r   r8  r  r{   rE   )r7  r   r8  r  r{   rz  )r7  zGenericInterval | intr8  zChromaticInterval | int | floatr{   r   )rA   r   rB   r  r{   r   )rA   r   rB   r  r{   r   )rA   r  rB   r  r{   r  )r   r   r  str | Intervalr{   r   )rA   r   r  r  r{   r   r  )^r|   
__future__r   	fractionsr   r   r   enumr  typingr   r   rj  r   r   music21.common.decoratorsr   music21.common.typesr	   r
   r   rN  r   r   r   EnvironmentenvironLocalr   r  IntEnumr   r$   r%   r&   r   rb   rT   rC   rE   r   r   r   r   r}   r   r   r   r   r  r4  r   r~   r5  r6  r  _P_m_Mr   Music21Exceptionrp   r   r   r   r   r   r   r   r   r   Music21Objectr   r   rz  r  r)  r0  r2  r?  rA  rF  r   r  r  r  r  r   r   r  r  r  
_DOC_ORDERr    mainTestr   r(   r)   <module>r     s   #  
   	     1 )    ?? &&z2
 #F	 E  &&##Y%%{4U [_lU lUb 
 
 OOOO
 	 		  ____ Gb!Wr1gAwQ"a9;O;OQR:SGb!Wr1gAwQ 
 	55 	
2,33jGIR=@2>2>!2>j&"R ?A ; @B-N("4%% ("VW1l W1t}	| }	@ F
O9O95O9d$$$ $8,,, ,2?
?
? ?D-
-
- -&34
34
%34 34xY!| Y!z 
 5' 

 
 5) 
$3 5$33$3P 
!6( 

 
!6* 

!640 
4& 

 
4( 
(24(22(2V 
 5' 

 
 5) 
 538 	2=2=2=
 2=j$)2B.$.B5.z  3-

 z r(   