summaryrefslogtreecommitdiff
path: root/ipl/gpacks/weaving/pat2tie.icn
diff options
context:
space:
mode:
Diffstat (limited to 'ipl/gpacks/weaving/pat2tie.icn')
-rw-r--r--ipl/gpacks/weaving/pat2tie.icn37
1 files changed, 37 insertions, 0 deletions
diff --git a/ipl/gpacks/weaving/pat2tie.icn b/ipl/gpacks/weaving/pat2tie.icn
new file mode 100644
index 0000000..e46a504
--- /dev/null
+++ b/ipl/gpacks/weaving/pat2tie.icn
@@ -0,0 +1,37 @@
+############################################################################
+#
+# File: pat2tie.icn
+#
+# Subject: Program to convert patterns to tie-ups
+#
+# Author: Ralph E. Griswold
+#
+# Date: January 29, 1999
+#
+############################################################################
+#
+# This file is in the public domain.
+#
+############################################################################
+#
+# AD HOC
+#
+############################################################################
+#
+# Links: patutils, tieutils
+#
+############################################################################
+
+link patutils
+link tieutils
+
+procedure main()
+ local tieup, pat, matrix
+
+ while pat := read() do {
+ matrix := pat2rows(pat)
+ tieup := tie(*matrix[1], *matrix, matrix)
+ write(tier2string(tieup))
+ }
+
+end