Skip to content

Commit

Permalink
testing default
Browse files Browse the repository at this point in the history
  • Loading branch information
jchilds0 committed Jul 31, 2023
1 parent 4db1fc0 commit 1991936
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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 = 1;
int numTet[] = {6};
int index[] = {568};
int numTet[] = {};
int index[] = {};

char *error[] = {"CuspedCensusData/link-70k.tri"};

Expand Down
2 changes: 1 addition & 1 deletion dev/symplectic_basis/symplectic_basis_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void testDual(void) {
if (get_orientability(theTriangulation) == nonorientable_manifold)
continue;

printf("Num Tet: %d Index: %d \n", index[i][0], j);
// printf("Num Tet: %d Index: %d \n", index[i][0], j);

basis = get_symplectic_basis(theTriangulation, &dual_rows, &dual_cols);

Expand Down
2 changes: 1 addition & 1 deletion kernel/kernel_code/symplectic_basis.c
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ int *gluing_equations_for_edge_class(Triangulation *manifold, int edgeClass) {
* Setup graph and cusp triangulation, and run construct dual curves.
*/

static int debug = TRUE;
static int debug = FALSE;

int **get_symplectic_equations(Triangulation *manifold, Boolean *edge_classes, int *num_rows, int num_cols) {
int i, j, k;
Expand Down

0 comments on commit 1991936

Please sign in to comment.