Skip to content

Commit

Permalink
Merge pull request #46 from js51/update_hyperoctahedral_group
Browse files Browse the repository at this point in the history
Add eigenvector method for partial traces
  • Loading branch information
js51 authored May 29, 2024
2 parents 00ae782 + 8fe48b9 commit 9188b1f
Show file tree
Hide file tree
Showing 47 changed files with 3,385 additions and 2,326 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pickles/*.pickle filter=lfs diff=lfs merge=lfs -text
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ include *.txt
include LICENSE
include VERSION
include *.py
include *.pickle
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.6
0.4.0
7 changes: 5 additions & 2 deletions cgt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@
gap._Expect__command = gap._Expect__command.replace(gap._Expect__command[s:e], f'-b -o {gigs}G')
from .examples import *
from .enums import *
from .position_paradigm import PositionParadigmFramework
from .models import Model
from .constants import *
from .position_paradigm import GenomeFramework, PositionParadigmFramework, Framework
from .models import Model
from . import distances
from . import plotting
5 changes: 5 additions & 0 deletions cgt/constants.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""
Declare constants for the CGT package.
"""

VALUES_OF_N_WITH_SAVED_IRREPS_OF_Z = [ 7, 8, 9 ]
Loading

0 comments on commit 9188b1f

Please sign in to comment.