From 5023763880d679d2cc99378b4901cb43a1e441c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonia=20P=C3=A9rez-Cerezo?= Date: Mon, 22 Apr 2024 18:36:24 +0200 Subject: [PATCH] Add missing semicolon --- scripts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/README.md b/scripts/README.md index 9bf1099..c570427 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -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`