aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2023-12-15 22:36:03 +0530
committerAkshay Nair <phenax5@gmail.com>2023-12-15 22:36:03 +0530
commitefc0358c1e2b52308d3df68aa713cef5dc6e6bfe (patch)
tree40bac1f220895180c1cb99f044ac56eb4ed1ccbb /src/utils
parent3d91b8c0fe73d24e3bcf13e7d7e8079f58975500 (diff)
downloadts-theorem-provinator-efc0358c1e2b52308d3df68aa713cef5dc6e6bfe.tar.gz
ts-theorem-provinator-efc0358c1e2b52308d3df68aa713cef5dc6e6bfe.zip
refactor: moves stuff around
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