Skip to content

Commit

Permalink
fixed train line init, errors in python testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jchilds0 committed Jul 25, 2023
1 parent 1d16525 commit b2c5024
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 130 deletions.
2 changes: 1 addition & 1 deletion cython/core/triangulation.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -3069,7 +3069,7 @@ cdef class Triangulation():

eqns = []

# peripheral_curves(self.c_triangulation)
peripheral_curves(self.c_triangulation)

# Cusp Equations
for i in range(self.num_cusps()):
Expand Down
4 changes: 2 additions & 2 deletions dev/symplectic_basis/symplectic_basis_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ int main(void) {
int fromFile = 1;

int count = 3;
int numTet[] = {5};
int index[] = {7};
int numTet[] = {6};
int index[] = {443};

char *error[] = {"CuspedCensusData/knot-0.tri",
"CuspedCensusData/knot-1.tri",
Expand Down
2 changes: 1 addition & 1 deletion dev/symplectic_basis/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def test_knot_complements(self):
self.assertTrue(is_symplectic(basis), str(M.identify()[0]))
i += 1

# @unittest.skip
@unittest.skip
def test_link_complements(self):
i = 0
for M in tqdm(snappy.HTLinkExteriors[1:1000], desc="Links...", ncols=120):
Expand Down
Loading

0 comments on commit b2c5024

Please sign in to comment.