Skip to content

Commit e4b6f34

Browse files
committed
Replace &lt; and &gt; with < and >
1 parent a8714e4 commit e4b6f34

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

TourExec1.1.f

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ Program AxTest
7272
Do 15 Move = 1, Length(Game)
7373
RandomNumber = RAN(RandomSeed)
7474
RowChoice = KRowFunction(JB,Move, RowGameSc,ColGameSc,RandomNumber,Row,JA)
75-
if ( RAN(RandomSeed) &lt; noise ) RowChoice = 1-RowChoice ! noise happened to Row
75+
if ( RAN(RandomSeed) < noise ) RowChoice = 1-RowChoice ! noise happened to Row
7676
RandomNumber = RAN(RandomSeed)
7777
ColChoice = KColFunction(JA,Move,ColGameSc,RowGameSc,RandomNumber,ColType,JB)
78-
if ( RAN(RandomSeed) &lt; noise ) ColChoice = 1 - ColChoice ! noise happened to Col
78+
if ( RAN(RandomSeed) < noise ) ColChoice = 1 - ColChoice ! noise happened to Col
7979
C temp test:
8080
c Write(6, 999) Move, RowChoice, ColChoice
8181
c999 Format(' move, rowchoice, colchoice ', 3i6)
@@ -179,10 +179,10 @@ Function KPavlovC(J,M,K,L,R,JB) ! Pavlov, JB is own (Col) previous move
179179
c---------------------------------------------------------
180180
Function KRowFunction(J,M,K,L,R,iRow,JA) ! Look up row rule, return rowchoice
181181
c add JA to row fcns to report their own previous move, 7/23/93
182-
if (irow&gt;32 ) goto 133
183-
if (irow&gt;16 ) goto 117
184-
if (irow&gt;8 ) goto 109
185-
if (irow&gt;4 ) goto 105
182+
if (irow>32 ) goto 133
183+
if (irow>16 ) goto 117
184+
if (irow>8 ) goto 109
185+
if (irow>4 ) goto 105
186186
if(irow=1) KRowFunction = K92R(J,M,K,L,R,JA)
187187
if(irow=2) KRowFunction = K61R(J,M,K,L,R,JA)
188188
if(irow=3) KRowFunction = K42R(J,M,K,L,R,JA)
@@ -193,7 +193,7 @@ Function KRowFunction(J,M,K,L,R,iRow,JA) ! Look up row rule, return rowch
193193
if(irow=7) KRowFunction = K41R(J,M,K,L,R,JA)
194194
if(irow=8) KRowFunction = K75R(J,M,K,L,R,JA)
195195
return
196-
109 if(irow&gt;12) goto 113
196+
109 if(irow>12) goto 113
197197
if(irow=9) KRowFunction = K84R(J,M,K,L,R,JA)
198198
if(irow=10) KRowFunction = K32R(J,M,K,L,R,JA)
199199
if(irow=11) KRowFunction = K35R(J,M,K,L,R,JA)
@@ -204,8 +204,8 @@ Function KRowFunction(J,M,K,L,R,iRow,JA) ! Look up row rule, return rowch
204204
if(irow=15) KRowFunction = K83R(J,M,K,L,R,JA)
205205
if(irow=16) KRowFunction = K47R(J,M,K,L,R,JA)
206206
return
207-
117 if (irow&gt;24 ) goto 125
208-
if (irow&gt;20 ) goto 121
207+
117 if (irow>24 ) goto 125
208+
if (irow>20 ) goto 121
209209
if(irow=17) KRowFunction = K64R(J,M,K,L,R,JA)
210210
if(irow=18) KRowFunction = K51R(J,M,K,L,R,JA)
211211
if(irow=19) KRowFunction = K78R(J,M,K,L,R,JA)
@@ -216,7 +216,7 @@ Function KRowFunction(J,M,K,L,R,iRow,JA) ! Look up row rule, return rowch
216216
if(irow=23) KRowFunction = K31R(J,M,K,L,R,JA)
217217
if(irow=24) KRowFunction = K90R(J,M,K,L,R,JA)
218218
return
219-
125 if (irow&gt;28 ) goto 129
219+
125 if (irow>28 ) goto 129
220220
if(irow=25) KRowFunction = K39R(J,M,K,L,R,JA)
221221
if(irow=26) KRowFunction = K79R(J,M,K,L,R,JA)
222222
if(irow=27) KRowFunction = K67R(J,M,K,L,R,JA)
@@ -227,9 +227,9 @@ Function KRowFunction(J,M,K,L,R,iRow,JA) ! Look up row rule, return rowch
227227
if(irow=31) KRowFunction = K57R(J,M,K,L,R,JA)
228228
if(irow=32) KRowFunction = K70R(J,M,K,L,R,JA)
229229
return
230-
133 if (irow&gt;48 ) goto 149
231-
if (irow&gt;40 ) goto 141
232-
if (irow&gt;36 ) goto 137
230+
133 if (irow>48 ) goto 149
231+
if (irow>40 ) goto 141
232+
if (irow>36 ) goto 137
233233
if(irow=33) KRowFunction = K85R(J,M,K,L,R,JA)
234234
if(irow=34) KRowFunction = K38R(J,M,K,L,R,JA)
235235
if(irow=35) KRowFunction = K40R(J,M,K,L,R,JA)
@@ -240,7 +240,7 @@ Function KRowFunction(J,M,K,L,R,iRow,JA) ! Look up row rule, return rowch
240240
if(irow=39) KRowFunction = K43R(J,M,K,L,R,JA)
241241
if(irow=40) KRowFunction = K59R(J,M,K,L,R,JA)
242242
return
243-
141 if(irow&gt;44) goto 145
243+
141 if(irow>44) goto 145
244244
if(irow=41) KRowFunction = K73R(J,M,K,L,R,JA)
245245
if(irow=42) KRowFunction = K55R(J,M,K,L,R,JA)
246246
if(irow=43) KRowFunction = K81R(J,M,K,L,R,JA)
@@ -251,8 +251,8 @@ Function KRowFunction(J,M,K,L,R,iRow,JA) ! Look up row rule, return rowch
251251
if(irow=47) KRowFunction = K65R(J,M,K,L,R,JA)
252252
if(irow=48) KRowFunction = K52R(J,M,K,L,R,JA)
253253
return
254-
149 if (irow&gt;56 ) goto 157
255-
if (irow&gt;52 ) goto 153
254+
149 if (irow>56 ) goto 157
255+
if (irow>52 ) goto 153
256256
if(irow=49) KRowFunction = K82R(J,M,K,L,R,JA)
257257
if(irow=50) KRowFunction = K45R(J,M,K,L,R,JA)
258258
if(irow=51) KRowFunction = K62R(J,M,K,L,R,JA)
@@ -263,7 +263,7 @@ Function KRowFunction(J,M,K,L,R,iRow,JA) ! Look up row rule, return rowch
263263
if(irow=55) KRowFunction = K77R(J,M,K,L,R,JA)
264264
if(irow=56) KRowFunction = K89R(J,M,K,L,R,JA)
265265
return
266-
157 if (irow&gt;60) goto 161
266+
157 if (irow>60) goto 161
267267
if(irow=57) KRowFunction = K63R(J,M,K,L,R,JA)
268268
if(irow=58) KRowFunction = K54R(J,M,K,L,R,JA)
269269
if(irow=59) KRowFunction = K33R(J,M,K,L,R,JA)

0 commit comments

Comments
 (0)