summaryrefslogtreecommitdiff
path: root/ipl/gprogs/dd2res.icn
blob: 785c8b64c2e1b1942243a026d99f6a64830bae16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
############################################################################
#
#	File:     dd2res.icn
#
#	Subject:  Program to compute loom resources needed from drawdown
#
#	Author:   Ralph E. Griswold
#
#	Date:     July 8, 2002
#
############################################################################
#
#  This file is in the public domain.
#
############################################################################
#
#  This program reads a pattern in row or BLP format.
#
#  The number of shafts and treadles required is written to standard
#  output.
#
############################################################################
#
#  Links:  pattread, patutils, patxform
#
############################################################################

link pattread
link patutils
link patxform

procedure main()
   local rows, row

   rows := pattread()

   write(*set(protate(rows)), "x", *set(rows))

end