@@ -721,62 +721,62 @@ def unpack(b, spec):
721721 shape3 = (Nspin , Norb , Nbath )
722722
723723 SPEC = {
724- #normal mode, normal bath
724+ # normal mode, normal bath
725725 (1 , 1 ): dict (
726726 fields = {"e" : shape3 , "v" : shape3 },
727727 order = ["e" , "v" ],
728728 ),
729- #superc mode, normal bath
729+ # superc mode, normal bath
730730 (2 , 1 ): dict (
731731 fields = {"e" : shape3 , "d" : shape3 , "v" : shape3 },
732732 order = ["e" , "d" , "v" ],
733733 ),
734- #nonsu2 mode, normal bath
734+ # nonsu2 mode, normal bath
735735 (3 , 1 ): dict (
736736 fields = {"e" : shape3 , "v" : shape3 , "u" : shape3 },
737737 order = ["e" , "v" , "u" ],
738738 ),
739- #normal mode, hybrid bath
739+ # normal mode, hybrid bath
740740 (1 , 2 ): dict (
741741 fields = {"e" : (Nspin , Nbath ), "v" : shape3 },
742742 order = ["e" , "v" ],
743743 ),
744- #superc mode, hybrid bath
744+ # superc mode, hybrid bath
745745 (2 , 2 ): dict (
746746 fields = {"e" : (Nspin , Nbath ), "d" : (Nspin , Nbath ), "v" : shape3 },
747747 order = ["e" , "d" , "v" ],
748748 ),
749- #nonsu2 mode, hybrid bath
749+ # nonsu2 mode, hybrid bath
750750 (3 , 2 ): dict (
751751 fields = {"e" : (Nspin , Nbath ), "v" : shape3 , "u" : shape3 },
752752 order = ["e" , "v" , "u" ],
753753 ),
754- #normal mode, replica bath
754+ # normal mode, replica bath
755755 (1 , 3 ): dict (
756756 fields = {"v" : (Nbath ,), "l" : (Nbath , Nsym )},
757757 order = ["v" , "l" ],
758758 ),
759- #superc mode, replica bath
759+ # superc mode, replica bath
760760 (2 , 3 ): dict (
761761 fields = {"v" : (Nbath ,), "l" : (Nbath , Nsym )},
762762 order = ["v" , "l" ],
763763 ),
764- #nonsu2 mode, replica bath
764+ # nonsu2 mode, replica bath
765765 (3 , 3 ): dict (
766766 fields = {"v" : (Nbath ,), "l" : (Nbath , Nsym )},
767767 order = ["v" , "l" ],
768768 ),
769- #normal mode, general bath
769+ # normal mode, general bath
770770 (1 , 4 ): dict (
771771 fields = {"v" : (Nbath , Nspin * Norb ), "l" : (Nbath , Nsym )},
772772 order = ["v" , "l" ],
773773 ),
774- #superc mode, general bath
774+ # superc mode, general bath
775775 (2 , 4 ): dict (
776776 fields = {"v" : (Nbath , Nspin * Norb ), "l" : (Nbath , Nsym )},
777777 order = ["v" , "l" ],
778778 ),
779- #nonsu2 mode, general bath
779+ # nonsu2 mode, general bath
780780 (3 , 4 ): dict (
781781 fields = {"v" : (Nbath , Nspin * Norb ), "l" : (Nbath , Nsym )},
782782 order = ["v" , "l" ],
0 commit comments