예제 #1
0
파일: fermion.py 프로젝트: sympsi/sympsi
 def __new__(cls, n):
     if n not in [0, 1]:
         raise ValueError("n must be 0 or 1")
     return Bra.__new__(cls, n)
예제 #2
0
파일: boson.py 프로젝트: ajgpitch/sympsi
 def __new__(cls):
     return Bra.__new__(cls)
예제 #3
0
파일: boson.py 프로젝트: ajgpitch/sympsi
 def __new__(cls, alpha):
     return Bra.__new__(cls, alpha)
예제 #4
0
파일: pauli.py 프로젝트: eunjongkim/sympsi
 def __new__(cls, n):
     if n not in [0, 1]:
         raise ValueError("n must be 0 or 1")
     return Bra.__new__(cls, n)
예제 #5
0
파일: boson.py 프로젝트: eunjongkim/sympsi
 def __new__(cls):
     return Bra.__new__(cls)
예제 #6
0
파일: boson.py 프로젝트: eunjongkim/sympsi
 def __new__(cls, alpha):
     return Bra.__new__(cls, alpha)