Add missing semicolon
This commit is contained in:
parent
e8d792a2b1
commit
5023763880
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ Populate the minimal triangulations (by vertices) table by finding the
|
|||
minimum triangulation for each signature
|
||||
|
||||
```
|
||||
INSERT INTO minimal_triangulations SELECT DISTINCT ON (signature) * FROM triangulations ORDER BY signature, vertices
|
||||
INSERT INTO minimal_triangulations SELECT DISTINCT ON (signature) * FROM triangulations ORDER BY signature, vertices;
|
||||
```
|
||||
|
||||
Remove combinatorially isomorphic triangulations by running `triangulation_bookkeeping_minimal.pl`, and output sorted by type using `triangulation_bookkeeping_output.pl`
|
||||
|
|
Loading…
Reference in a new issue