aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/utils/nat.ts (renamed from src/nat.ts)2
-rw-r--r--src/utils/theorem.ts (renamed from src/util.ts)0
2 files changed, 1 insertions, 1 deletions
diff --git a/src/nat.ts b/src/utils/nat.ts
index 7491e82..af8f3da 100644
--- a/src/nat.ts
+++ b/src/utils/nat.ts
@@ -1,4 +1,4 @@
-import { Op } from './util';
+import { Op } from './theorem';
export type Add<A extends Op, B extends Op> = { op: '+'; a: A; b: B };
export type Multiply<A extends Op, B extends Op> = { op: '*'; a: A; b: B };
diff --git a/src/util.ts b/src/utils/theorem.ts
index a4dd2e9..a4dd2e9 100644
--- a/src/util.ts
+++ b/src/utils/theorem.ts