Home » CEEFAX disks » telesoftware11.adl » 16-12-88/F\INFO
16-12-88/F\INFO
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » CEEFAX disks » telesoftware11.adl |
Filename: | 16-12-88/F\INFO |
Read OK: | ✔ |
File size: | 2821 bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
__________________________________________________________________________ These pools prediction programs have been updated for use with the expanded CEEFAX league table data for the 1988/9 season. Some makes of adaptor cannot implement multiple page grabbers, necessary to give a reasonable data access time, due to their design. This cannot be overcome by software, and is a direct result of the type of teletext reception chip used in their design. Such adaptors will not be able to use these routines. The routines have been adjusted since their last broadcast to cater for the various page layouts and quantity of sub-pages occasionally implemented by the CEEFAX editors. Other adjustments may be necessary in the future! __________________________________________________________________________ OCT/DEC 1988: The programs have been modified to cope with the various different pages on which the results and/or fixtures lists can be found. Initially, CEEFAX used page 332 for the fixtures, and 331 for the results. However, this protocol is frequently not adhered to. The data for either routine must now be sought from either page, with the added complication of either page not being transmitted at all on occasions. To cope with this, the routines MATCH and RESULTS now scan the most obvious page first. If the appropriate data is not found there, the other page is searched. If the relevant page is not found within a certain time, it is assumed it is not being broadcast. Because of this, it is not possible to estimate how long on any particular day the routines will take to find the appropriate data. It may find it within a few seconds, or it may take several minutes, depending upon the level of searching that has to be done to find the pages! Please be patient. _________________________________________________________________________ ** Please note ** Despite the footnote to this text, many people have tried, and failed, to run the RESULTS and MATCH programs on Morley or Solidisk adaptors. These units cannot implement the advanced features incorporated into these programs. This is a hardware constraint, caused by the type of teletext chip used in their design. Even the ATS ROM cannot add these features as the adaptor hardware itself will not allow it. ________________________________________________________________________ Pools Prediction Programs: ========================== This suite of programs uses CEEFAX data to predict the football results for the current week. There are three different programs: 1. Match 2. Foot 3. Results 1. Match: ========= From about Tuesday onwards, BBC2 CEEFAX transmit the following Saturday's fixture list. The program "Match" will analyse these transmissions and create a data file of match data on disc. This file can then be used by FOOT as match data, to avoid having to type in by hand the teams playing in each match. The program will check to see if the fixtures list is actually being transmitted. If it finds it, the CEEFAX pages required are listed on screen, with each found page being reported. The data file is created automatically as each page is found. Several of the system's page grabbers are used, which gives a considerable time saving over previous versions of this program. As processing is carried out, the match number (directly relating to the pools coupon number) of each match found is briefly displayed on screen. The program will inform you if the fixtures list is not yet available from CEEFAX. If this is so, the program should be run again later in the week. 2. Foot: ======== This is the main prediction program. Before using this, however, some things must be noted. The program uses CEEFAX data to compile information from the league tables about each team playing in the league. This information is then used to predict the outcome of the match. It is important to understand how this process works, as the user must provide his own algorithm using this data! The information is kept in the following arrays: ITEM HOMETEAM AWAYTEAM ==== ========= ========= League points gained: PT(m) PT(n) Total matches played: P(m) P(n) Goals scored for team: F(m) F(n) Goals scored against team: A(m) A(n) Games lost: L(m) L(n) Games won: W(m) W(n) Games drawn: D(m) D(n) A formula must be devised to use as much of this information as is necessary to produce a winning solution. The formula must be of the form: = (Strength of away team) - (strength of home team) i.e. it must calculate a value for the home team, then a value for the away team, then subtract one result from the other. Calculations that produce results closest to zero are considered more likely to be drawn games than those producing high values. So two teams producing a similar number will be more likely to result in a draw than two teams producing very different values. The formula included in the program is very simple, and only compares the two teams league positions. To give some idea of how to enter a suitable formula, some examples of calculating team strength follow: =(PT(m)+(D(m)*3)-W(m))-(PT(n)+(D(n)*3)-W(n)) This uses points gained, drawn games and games won for each team =(P(m)/D(m))-(P(n)/D(n)) calculates the number of matches played, divided by the number of matches drawn for each team =PT(m)-PT(n) calculates the number of points gained for each team =(P(m)/L(m))-(P(n)/W(n)) studies the number of games lost by the home team, and the number of games won by away team (a perfectly "legal" if not very logical formula!) These formulae can be very simple such as: =D(m)-D(n) which compares the number of drawn matches of each team, or more complex, such as: =((L(m)+(P(m)*20))*D(m))-((W(n)+(P(n)*20))*D(n)) which considers matches drawn, lost, won, etc. A winning solution is likely to be even more involved! It should be remembered that, particularly early in the season, several of these values will be equal to zero, and an error will result if your formula includes a 'division by zero'! Your desired formula should replace the one given in line 5000 of the program "Foot", then the new version saved to disc before use. When the program is run, you are asked if the match data is to be read from disc. This is only possible if it has previously been saved to disc using the program "Match" (see above), but will save a lot of time if it can be read from a disc file. You are then asked if the league details are to be read from disc. Again, this may only be done if this data has already been saved to disc from a previous run of the "Foot" program. (The data is automatically saved to disc each time "Foot" is run.) If the league data has been taken from CEEFAX, you will then be offered a chance to see (or print out) a list of the team names and their corresponding numbers. This option is not available if the data is read from disc, as the program then relies on a compressed version of the team names which may not be very much help to you! The team names and numbers will be needed later if you have opted to manually enter the fixtures list. If a printout of this list is required, simply set your printer "on line" before selecting this option. The program proceeds to request the match data in numeric form. If the data is read from disc, the fixtures list will be read in, stopping at the bottom of each screen to allow you to look for any necessary corrections. Press SHIFT to scroll the screen. If this data needs to be entered manually, type in the appropriate team number at the prompt, as taken from the team list offered earlier. Any corrections can be made after all the match data has been entered. The program will then calculate the most likely 18 matches to result in a draw. If you want this selection sent to your printer, ensure that your printer is "on line". Otherwise it will be sent to the screen only. 3. Results: =========== During the execution of "Foot", a data file is created on disc of the matches predicted. "Results" will analyse the actual results as transmitted by CEEFAX, and calculate the maximum pools points that have gained using the given forecast. If you use a pools entry with more (or less) than ten selections, the appropriate line at the beginning of the program must be altered. The program calculates the maximum points possible using a Full Perm plan, but also presents the results in pools points format for normal checking of a coupon. The results are broadcast on BBC1 on a Saturday afternoon/evening, and then are transferred to BBC2 for the early part of the following week. The program detects the day on which it is run, and will select the correct channel and page numbers automatically. (i.e. if run on Saturday, it will select BBC1, pages 331 onwards, but if run on, say, Monday, it will select BBC2, page 341.) A check is carried out to ensure the actual results are obtained, and not the half-time results or other data. A report will be given, and the program terminated if the results are not found. If a match is declared void, or a result decided by the Pools panel, the correct pools points will be found. Such situations will be reported when the results are listed by the program. This program uses several of the system's page grabbers, resulting in a much faster execution time than from previous versions. Whilst each page from CEEFAX is being processed, the screen will indicate briefly which particular pools coupon match number is being studied at the time. (c) Jeremy Brayshaw August 1988 Note: The programs have been written to operate with the BBC Microcomputer System Teletext Adaptor (both the Acorn system and the new GIS adaptor) and ATS or ATS+ software. They are not guaranteed to function correctly on other makes of adaptor, even with ATS. This is because some other teletext adaptors use less versatile teletext reception chips, and it is not possible to implement multiple simultaneous page grabbers. This is a restriction of the hardware, and cannot be overcome in software.
00000000 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |________________| * 00000040 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 0d 0d 54 68 65 73 |__________..Thes| 00000050 65 20 70 6f 6f 6c 73 20 70 72 65 64 69 63 74 69 |e pools predicti| 00000060 6f 6e 20 70 72 6f 67 72 61 6d 73 20 68 61 76 65 |on programs have| 00000070 20 62 65 65 6e 20 75 70 64 61 74 65 64 20 66 6f | been updated fo| 00000080 72 20 75 73 65 20 77 69 74 68 20 74 68 65 0d 65 |r use with the.e| 00000090 78 70 61 6e 64 65 64 20 43 45 45 46 41 58 20 6c |xpanded CEEFAX l| 000000a0 65 61 67 75 65 20 74 61 62 6c 65 20 64 61 74 61 |eague table data| 000000b0 20 66 6f 72 20 74 68 65 20 31 39 38 38 2f 39 20 | for the 1988/9 | 000000c0 73 65 61 73 6f 6e 2e 0d 0d 53 6f 6d 65 20 6d 61 |season...Some ma| 000000d0 6b 65 73 20 6f 66 20 61 64 61 70 74 6f 72 20 63 |kes of adaptor c| 000000e0 61 6e 6e 6f 74 20 69 6d 70 6c 65 6d 65 6e 74 20 |annot implement | 000000f0 6d 75 6c 74 69 70 6c 65 20 70 61 67 65 20 67 72 |multiple page gr| 00000100 61 62 62 65 72 73 2c 20 6e 65 63 65 73 73 61 72 |abbers, necessar| 00000110 79 0d 74 6f 20 67 69 76 65 20 61 20 72 65 61 73 |y.to give a reas| 00000120 6f 6e 61 62 6c 65 20 64 61 74 61 20 61 63 63 65 |onable data acce| 00000130 73 73 20 74 69 6d 65 2c 20 64 75 65 20 74 6f 20 |ss time, due to | 00000140 74 68 65 69 72 20 64 65 73 69 67 6e 2e 20 54 68 |their design. Th| 00000150 69 73 20 63 61 6e 6e 6f 74 20 62 65 0d 6f 76 65 |is cannot be.ove| 00000160 72 63 6f 6d 65 20 62 79 20 73 6f 66 74 77 61 72 |rcome by softwar| 00000170 65 2c 20 61 6e 64 20 69 73 20 61 20 64 69 72 65 |e, and is a dire| 00000180 63 74 20 72 65 73 75 6c 74 20 6f 66 20 74 68 65 |ct result of the| 00000190 20 74 79 70 65 20 6f 66 20 74 65 6c 65 74 65 78 | type of teletex| 000001a0 74 0d 72 65 63 65 70 74 69 6f 6e 20 63 68 69 70 |t.reception chip| 000001b0 20 75 73 65 64 20 69 6e 20 74 68 65 69 72 20 64 | used in their d| 000001c0 65 73 69 67 6e 2e 20 53 75 63 68 20 61 64 61 70 |esign. Such adap| 000001d0 74 6f 72 73 20 77 69 6c 6c 20 6e 6f 74 20 62 65 |tors will not be| 000001e0 20 61 62 6c 65 20 74 6f 20 75 73 65 0d 74 68 65 | able to use.the| 000001f0 73 65 20 72 6f 75 74 69 6e 65 73 2e 0d 0d 54 68 |se routines...Th| 00000200 65 20 72 6f 75 74 69 6e 65 73 20 68 61 76 65 20 |e routines have | 00000210 62 65 65 6e 20 61 64 6a 75 73 74 65 64 20 73 69 |been adjusted si| 00000220 6e 63 65 20 74 68 65 69 72 20 6c 61 73 74 20 62 |nce their last b| 00000230 72 6f 61 64 63 61 73 74 20 74 6f 20 63 61 74 65 |roadcast to cate| 00000240 72 20 66 6f 72 0d 74 68 65 20 76 61 72 69 6f 75 |r for.the variou| 00000250 73 20 70 61 67 65 20 6c 61 79 6f 75 74 73 20 61 |s page layouts a| 00000260 6e 64 20 71 75 61 6e 74 69 74 79 20 6f 66 20 73 |nd quantity of s| 00000270 75 62 2d 70 61 67 65 73 20 6f 63 63 61 73 69 6f |ub-pages occasio| 00000280 6e 61 6c 6c 79 0d 69 6d 70 6c 65 6d 65 6e 74 65 |nally.implemente| 00000290 64 20 62 79 20 74 68 65 20 43 45 45 46 41 58 20 |d by the CEEFAX | 000002a0 65 64 69 74 6f 72 73 2e 20 4f 74 68 65 72 20 61 |editors. Other a| 000002b0 64 6a 75 73 74 6d 65 6e 74 73 20 6d 61 79 20 62 |djustments may b| 000002c0 65 20 6e 65 63 65 73 73 61 72 79 20 69 6e 0d 74 |e necessary in.t| 000002d0 68 65 20 66 75 74 75 72 65 21 0d 5f 5f 5f 5f 5f |he future!._____| 000002e0 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |________________| * 00000320 5f 5f 5f 5f 5f 0d 0d 4f 43 54 2f 44 45 43 20 31 |_____..OCT/DEC 1| 00000330 39 38 38 3a 20 54 68 65 20 70 72 6f 67 72 61 6d |988: The program| 00000340 73 20 68 61 76 65 20 62 65 65 6e 20 6d 6f 64 69 |s have been modi| 00000350 66 69 65 64 20 74 6f 20 63 6f 70 65 20 77 69 74 |fied to cope wit| 00000360 68 20 74 68 65 20 76 61 72 69 6f 75 73 0d 64 69 |h the various.di| 00000370 66 66 65 72 65 6e 74 20 70 61 67 65 73 20 6f 6e |fferent pages on| 00000380 20 77 68 69 63 68 20 74 68 65 20 72 65 73 75 6c | which the resul| 00000390 74 73 20 61 6e 64 2f 6f 72 20 66 69 78 74 75 72 |ts and/or fixtur| 000003a0 65 73 20 6c 69 73 74 73 20 63 61 6e 20 62 65 20 |es lists can be | 000003b0 66 6f 75 6e 64 2e 0d 49 6e 69 74 69 61 6c 6c 79 |found..Initially| 000003c0 2c 20 43 45 45 46 41 58 20 75 73 65 64 20 70 61 |, CEEFAX used pa| 000003d0 67 65 20 33 33 32 20 66 6f 72 20 74 68 65 20 66 |ge 332 for the f| 000003e0 69 78 74 75 72 65 73 2c 20 61 6e 64 20 33 33 31 |ixtures, and 331| 000003f0 20 66 6f 72 20 74 68 65 20 72 65 73 75 6c 74 73 | for the results| 00000400 2e 0d 48 6f 77 65 76 65 72 2c 20 74 68 69 73 20 |..However, this | 00000410 70 72 6f 74 6f 63 6f 6c 20 69 73 20 66 72 65 71 |protocol is freq| 00000420 75 65 6e 74 6c 79 20 6e 6f 74 20 61 64 68 65 72 |uently not adher| 00000430 65 64 20 74 6f 2e 20 54 68 65 20 64 61 74 61 20 |ed to. The data | 00000440 66 6f 72 20 65 69 74 68 65 72 0d 72 6f 75 74 69 |for either.routi| 00000450 6e 65 20 6d 75 73 74 20 6e 6f 77 20 62 65 20 73 |ne must now be s| 00000460 6f 75 67 68 74 20 66 72 6f 6d 20 65 69 74 68 65 |ought from eithe| 00000470 72 20 70 61 67 65 2c 20 77 69 74 68 20 74 68 65 |r page, with the| 00000480 20 61 64 64 65 64 20 63 6f 6d 70 6c 69 63 61 74 | added complicat| 00000490 69 6f 6e 0d 6f 66 20 65 69 74 68 65 72 20 70 61 |ion.of either pa| 000004a0 67 65 20 6e 6f 74 20 62 65 69 6e 67 20 74 72 61 |ge not being tra| 000004b0 6e 73 6d 69 74 74 65 64 20 61 74 20 61 6c 6c 20 |nsmitted at all | 000004c0 6f 6e 20 6f 63 63 61 73 69 6f 6e 73 2e 0d 0d 54 |on occasions...T| 000004d0 6f 20 63 6f 70 65 20 77 69 74 68 20 74 68 69 73 |o cope with this| 000004e0 2c 20 74 68 65 20 72 6f 75 74 69 6e 65 73 20 4d |, the routines M| 000004f0 41 54 43 48 20 61 6e 64 20 52 45 53 55 4c 54 53 |ATCH and RESULTS| 00000500 20 6e 6f 77 20 73 63 61 6e 20 74 68 65 20 6d 6f | now scan the mo| 00000510 73 74 0d 6f 62 76 69 6f 75 73 20 70 61 67 65 20 |st.obvious page | 00000520 66 69 72 73 74 2e 20 49 66 20 74 68 65 20 61 70 |first. If the ap| 00000530 70 72 6f 70 72 69 61 74 65 20 64 61 74 61 20 69 |propriate data i| 00000540 73 20 6e 6f 74 20 66 6f 75 6e 64 20 74 68 65 72 |s not found ther| 00000550 65 2c 20 74 68 65 20 6f 74 68 65 72 0d 70 61 67 |e, the other.pag| 00000560 65 20 69 73 20 73 65 61 72 63 68 65 64 2e 20 49 |e is searched. I| 00000570 66 20 74 68 65 20 72 65 6c 65 76 61 6e 74 20 70 |f the relevant p| 00000580 61 67 65 20 69 73 20 6e 6f 74 20 66 6f 75 6e 64 |age is not found| 00000590 20 77 69 74 68 69 6e 20 61 20 63 65 72 74 61 69 | within a certai| 000005a0 6e 20 74 69 6d 65 2c 0d 69 74 20 69 73 20 61 73 |n time,.it is as| 000005b0 73 75 6d 65 64 20 69 74 20 69 73 20 6e 6f 74 20 |sumed it is not | 000005c0 62 65 69 6e 67 20 62 72 6f 61 64 63 61 73 74 2e |being broadcast.| 000005d0 20 42 65 63 61 75 73 65 20 6f 66 20 74 68 69 73 | Because of this| 000005e0 2c 20 69 74 20 69 73 20 6e 6f 74 0d 70 6f 73 73 |, it is not.poss| 000005f0 69 62 6c 65 20 74 6f 20 65 73 74 69 6d 61 74 65 |ible to estimate| 00000600 20 68 6f 77 20 6c 6f 6e 67 20 6f 6e 20 61 6e 79 | how long on any| 00000610 20 70 61 72 74 69 63 75 6c 61 72 20 64 61 79 20 | particular day | 00000620 74 68 65 20 72 6f 75 74 69 6e 65 73 20 77 69 6c |the routines wil| 00000630 6c 20 74 61 6b 65 0d 74 6f 20 66 69 6e 64 20 74 |l take.to find t| 00000640 68 65 20 61 70 70 72 6f 70 72 69 61 74 65 20 64 |he appropriate d| 00000650 61 74 61 2e 20 49 74 20 6d 61 79 20 66 69 6e 64 |ata. It may find| 00000660 20 69 74 20 77 69 74 68 69 6e 20 61 20 66 65 77 | it within a few| 00000670 20 73 65 63 6f 6e 64 73 2c 20 6f 72 20 69 74 0d | seconds, or it.| 00000680 6d 61 79 20 74 61 6b 65 20 73 65 76 65 72 61 6c |may take several| 00000690 20 6d 69 6e 75 74 65 73 2c 20 64 65 70 65 6e 64 | minutes, depend| 000006a0 69 6e 67 20 75 70 6f 6e 20 74 68 65 20 6c 65 76 |ing upon the lev| 000006b0 65 6c 20 6f 66 20 73 65 61 72 63 68 69 6e 67 20 |el of searching | 000006c0 74 68 61 74 20 68 61 73 0d 74 6f 20 62 65 20 64 |that has.to be d| 000006d0 6f 6e 65 20 74 6f 20 66 69 6e 64 20 74 68 65 20 |one to find the | 000006e0 70 61 67 65 73 21 20 50 6c 65 61 73 65 20 62 65 |pages! Please be| 000006f0 20 70 61 74 69 65 6e 74 2e 0d 5f 5f 5f 5f 5f 5f | patient..______| 00000700 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |________________| * 00000740 5f 5f 5f 0d 0d 2a 2a 20 50 6c 65 61 73 65 20 6e |___..** Please n| 00000750 6f 74 65 20 2a 2a 0d 0d 44 65 73 70 69 74 65 20 |ote **..Despite | 00000760 74 68 65 20 66 6f 6f 74 6e 6f 74 65 20 74 6f 20 |the footnote to | 00000770 74 68 69 73 20 74 65 78 74 2c 20 6d 61 6e 79 20 |this text, many | 00000780 70 65 6f 70 6c 65 20 68 61 76 65 20 74 72 69 65 |people have trie| 00000790 64 2c 20 61 6e 64 20 66 61 69 6c 65 64 2c 20 74 |d, and failed, t| 000007a0 6f 0d 72 75 6e 20 74 68 65 20 52 45 53 55 4c 54 |o.run the RESULT| 000007b0 53 20 61 6e 64 20 4d 41 54 43 48 20 70 72 6f 67 |S and MATCH prog| 000007c0 72 61 6d 73 20 6f 6e 20 4d 6f 72 6c 65 79 20 6f |rams on Morley o| 000007d0 72 20 53 6f 6c 69 64 69 73 6b 20 61 64 61 70 74 |r Solidisk adapt| 000007e0 6f 72 73 2e 20 54 68 65 73 65 0d 75 6e 69 74 73 |ors. These.units| 000007f0 20 63 61 6e 6e 6f 74 20 69 6d 70 6c 65 6d 65 6e | cannot implemen| 00000800 74 20 74 68 65 20 61 64 76 61 6e 63 65 64 20 66 |t the advanced f| 00000810 65 61 74 75 72 65 73 20 69 6e 63 6f 72 70 6f 72 |eatures incorpor| 00000820 61 74 65 64 20 69 6e 74 6f 20 74 68 65 73 65 0d |ated into these.| 00000830 70 72 6f 67 72 61 6d 73 2e 20 54 68 69 73 20 69 |programs. This i| 00000840 73 20 61 20 68 61 72 64 77 61 72 65 20 63 6f 6e |s a hardware con| 00000850 73 74 72 61 69 6e 74 2c 20 63 61 75 73 65 64 20 |straint, caused | 00000860 62 79 20 74 68 65 20 74 79 70 65 20 6f 66 20 74 |by the type of t| 00000870 65 6c 65 74 65 78 74 0d 63 68 69 70 20 75 73 65 |eletext.chip use| 00000880 64 20 69 6e 20 74 68 65 69 72 20 64 65 73 69 67 |d in their desig| 00000890 6e 2e 20 45 76 65 6e 20 74 68 65 20 41 54 53 20 |n. Even the ATS | 000008a0 52 4f 4d 20 63 61 6e 6e 6f 74 20 61 64 64 20 74 |ROM cannot add t| 000008b0 68 65 73 65 20 66 65 61 74 75 72 65 73 20 61 73 |hese features as| 000008c0 0d 74 68 65 20 61 64 61 70 74 6f 72 20 68 61 72 |.the adaptor har| 000008d0 64 77 61 72 65 20 69 74 73 65 6c 66 20 77 69 6c |dware itself wil| 000008e0 6c 20 6e 6f 74 20 61 6c 6c 6f 77 20 69 74 2e 0d |l not allow it..| 000008f0 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |________________| * 00000930 5f 5f 5f 5f 5f 5f 5f 5f 0d 0d 50 6f 6f 6c 73 20 |________..Pools | 00000940 50 72 65 64 69 63 74 69 6f 6e 20 50 72 6f 67 72 |Prediction Progr| 00000950 61 6d 73 3a 0d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |ams:.===========| 00000960 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 0d |===============.| 00000970 0d 54 68 69 73 20 73 75 69 74 65 20 6f 66 20 70 |.This suite of p| 00000980 72 6f 67 72 61 6d 73 20 75 73 65 73 20 43 45 45 |rograms uses CEE| 00000990 46 41 58 20 64 61 74 61 20 74 6f 20 70 72 65 64 |FAX data to pred| 000009a0 69 63 74 20 74 68 65 20 66 6f 6f 74 62 61 6c 6c |ict the football| 000009b0 20 72 65 73 75 6c 74 73 0d 66 6f 72 20 74 68 65 | results.for the| 000009c0 20 63 75 72 72 65 6e 74 20 77 65 65 6b 2e 20 54 | current week. T| 000009d0 68 65 72 65 20 61 72 65 20 74 68 72 65 65 20 64 |here are three d| 000009e0 69 66 66 65 72 65 6e 74 20 70 72 6f 67 72 61 6d |ifferent program| 000009f0 73 3a 0d 0d 31 2e 20 4d 61 74 63 68 0d 32 2e 20 |s:..1. Match.2. | 00000a00 46 6f 6f 74 0d 33 2e 20 52 65 73 75 6c 74 73 0d |Foot.3. Results.| 00000a10 0d 0d 31 2e 20 4d 61 74 63 68 3a 0d 3d 3d 3d 3d |..1. Match:.====| 00000a20 3d 3d 3d 3d 3d 0d 0d 46 72 6f 6d 20 61 62 6f 75 |=====..From abou| 00000a30 74 20 54 75 65 73 64 61 79 20 6f 6e 77 61 72 64 |t Tuesday onward| 00000a40 73 2c 20 42 42 43 32 20 43 45 45 46 41 58 20 74 |s, BBC2 CEEFAX t| 00000a50 72 61 6e 73 6d 69 74 20 74 68 65 20 66 6f 6c 6c |ransmit the foll| 00000a60 6f 77 69 6e 67 20 53 61 74 75 72 64 61 79 27 73 |owing Saturday's| 00000a70 0d 66 69 78 74 75 72 65 20 6c 69 73 74 2e 20 54 |.fixture list. T| 00000a80 68 65 20 70 72 6f 67 72 61 6d 20 22 4d 61 74 63 |he program "Matc| 00000a90 68 22 20 77 69 6c 6c 20 61 6e 61 6c 79 73 65 20 |h" will analyse | 00000aa0 74 68 65 73 65 20 74 72 61 6e 73 6d 69 73 73 69 |these transmissi| 00000ab0 6f 6e 73 20 61 6e 64 0d 63 72 65 61 74 65 20 61 |ons and.create a| 00000ac0 20 64 61 74 61 20 66 69 6c 65 20 6f 66 20 6d 61 | data file of ma| 00000ad0 74 63 68 20 64 61 74 61 20 6f 6e 20 64 69 73 63 |tch data on disc| 00000ae0 2e 20 54 68 69 73 20 66 69 6c 65 20 63 61 6e 20 |. This file can | 00000af0 74 68 65 6e 20 62 65 20 75 73 65 64 20 62 79 0d |then be used by.| 00000b00 46 4f 4f 54 20 61 73 20 6d 61 74 63 68 20 64 61 |FOOT as match da| 00000b10 74 61 2c 20 74 6f 20 61 76 6f 69 64 20 68 61 76 |ta, to avoid hav| 00000b20 69 6e 67 20 74 6f 20 74 79 70 65 20 69 6e 20 62 |ing to type in b| 00000b30 79 20 68 61 6e 64 20 74 68 65 20 74 65 61 6d 73 |y hand the teams| 00000b40 20 70 6c 61 79 69 6e 67 0d 69 6e 20 65 61 63 68 | playing.in each| 00000b50 20 6d 61 74 63 68 2e 0d 0d 54 68 65 20 70 72 6f | match...The pro| 00000b60 67 72 61 6d 20 77 69 6c 6c 20 63 68 65 63 6b 20 |gram will check | 00000b70 74 6f 20 73 65 65 20 69 66 20 74 68 65 20 66 69 |to see if the fi| 00000b80 78 74 75 72 65 73 20 6c 69 73 74 20 69 73 20 61 |xtures list is a| 00000b90 63 74 75 61 6c 6c 79 20 62 65 69 6e 67 0d 74 72 |ctually being.tr| 00000ba0 61 6e 73 6d 69 74 74 65 64 2e 20 49 66 20 69 74 |ansmitted. If it| 00000bb0 20 66 69 6e 64 73 20 69 74 2c 20 74 68 65 20 43 | finds it, the C| 00000bc0 45 45 46 41 58 20 70 61 67 65 73 20 72 65 71 75 |EEFAX pages requ| 00000bd0 69 72 65 64 20 61 72 65 20 6c 69 73 74 65 64 20 |ired are listed | 00000be0 6f 6e 0d 73 63 72 65 65 6e 2c 20 77 69 74 68 20 |on.screen, with | 00000bf0 65 61 63 68 20 66 6f 75 6e 64 20 70 61 67 65 20 |each found page | 00000c00 62 65 69 6e 67 20 72 65 70 6f 72 74 65 64 2e 0d |being reported..| 00000c10 0d 54 68 65 20 64 61 74 61 20 66 69 6c 65 20 69 |.The data file i| 00000c20 73 20 63 72 65 61 74 65 64 20 61 75 74 6f 6d 61 |s created automa| 00000c30 74 69 63 61 6c 6c 79 20 61 73 20 65 61 63 68 20 |tically as each | 00000c40 70 61 67 65 20 69 73 20 66 6f 75 6e 64 2e 20 53 |page is found. S| 00000c50 65 76 65 72 61 6c 20 6f 66 0d 74 68 65 20 73 79 |everal of.the sy| 00000c60 73 74 65 6d 27 73 20 70 61 67 65 20 67 72 61 62 |stem's page grab| 00000c70 62 65 72 73 20 61 72 65 20 75 73 65 64 2c 20 77 |bers are used, w| 00000c80 68 69 63 68 20 67 69 76 65 73 20 61 20 63 6f 6e |hich gives a con| 00000c90 73 69 64 65 72 61 62 6c 65 20 74 69 6d 65 0d 73 |siderable time.s| 00000ca0 61 76 69 6e 67 20 6f 76 65 72 20 70 72 65 76 69 |aving over previ| 00000cb0 6f 75 73 20 76 65 72 73 69 6f 6e 73 20 6f 66 20 |ous versions of | 00000cc0 74 68 69 73 20 70 72 6f 67 72 61 6d 2e 20 41 73 |this program. As| 00000cd0 20 70 72 6f 63 65 73 73 69 6e 67 20 69 73 20 63 | processing is c| 00000ce0 61 72 72 69 65 64 0d 6f 75 74 2c 20 74 68 65 20 |arried.out, the | 00000cf0 6d 61 74 63 68 20 6e 75 6d 62 65 72 20 28 64 69 |match number (di| 00000d00 72 65 63 74 6c 79 20 72 65 6c 61 74 69 6e 67 20 |rectly relating | 00000d10 74 6f 20 74 68 65 20 70 6f 6f 6c 73 20 63 6f 75 |to the pools cou| 00000d20 70 6f 6e 20 6e 75 6d 62 65 72 29 20 6f 66 0d 65 |pon number) of.e| 00000d30 61 63 68 20 6d 61 74 63 68 20 66 6f 75 6e 64 20 |ach match found | 00000d40 69 73 20 62 72 69 65 66 6c 79 20 64 69 73 70 6c |is briefly displ| 00000d50 61 79 65 64 20 6f 6e 20 73 63 72 65 65 6e 2e 0d |ayed on screen..| 00000d60 0d 54 68 65 20 70 72 6f 67 72 61 6d 20 77 69 6c |.The program wil| 00000d70 6c 20 69 6e 66 6f 72 6d 20 79 6f 75 20 69 66 20 |l inform you if | 00000d80 74 68 65 20 66 69 78 74 75 72 65 73 20 6c 69 73 |the fixtures lis| 00000d90 74 20 69 73 20 6e 6f 74 20 79 65 74 20 61 76 61 |t is not yet ava| 00000da0 69 6c 61 62 6c 65 20 66 72 6f 6d 0d 43 45 45 46 |ilable from.CEEF| 00000db0 41 58 2e 20 49 66 20 74 68 69 73 20 69 73 20 73 |AX. If this is s| 00000dc0 6f 2c 20 74 68 65 20 70 72 6f 67 72 61 6d 20 73 |o, the program s| 00000dd0 68 6f 75 6c 64 20 62 65 20 72 75 6e 20 61 67 61 |hould be run aga| 00000de0 69 6e 20 6c 61 74 65 72 20 69 6e 20 74 68 65 20 |in later in the | 00000df0 77 65 65 6b 2e 0d 0d 32 2e 20 46 6f 6f 74 3a 0d |week...2. Foot:.| 00000e00 3d 3d 3d 3d 3d 3d 3d 3d 0d 0d 54 68 69 73 20 69 |========..This i| 00000e10 73 20 74 68 65 20 6d 61 69 6e 20 70 72 65 64 69 |s the main predi| 00000e20 63 74 69 6f 6e 20 70 72 6f 67 72 61 6d 2e 20 42 |ction program. B| 00000e30 65 66 6f 72 65 20 75 73 69 6e 67 20 74 68 69 73 |efore using this| 00000e40 2c 20 68 6f 77 65 76 65 72 2c 20 73 6f 6d 65 0d |, however, some.| 00000e50 74 68 69 6e 67 73 20 6d 75 73 74 20 62 65 20 6e |things must be n| 00000e60 6f 74 65 64 2e 20 54 68 65 20 70 72 6f 67 72 61 |oted. The progra| 00000e70 6d 20 75 73 65 73 20 43 45 45 46 41 58 20 64 61 |m uses CEEFAX da| 00000e80 74 61 20 74 6f 20 63 6f 6d 70 69 6c 65 20 69 6e |ta to compile in| 00000e90 66 6f 72 6d 61 74 69 6f 6e 0d 66 72 6f 6d 20 74 |formation.from t| 00000ea0 68 65 20 6c 65 61 67 75 65 20 74 61 62 6c 65 73 |he league tables| 00000eb0 20 61 62 6f 75 74 20 65 61 63 68 20 74 65 61 6d | about each team| 00000ec0 20 70 6c 61 79 69 6e 67 20 69 6e 20 74 68 65 20 | playing in the | 00000ed0 6c 65 61 67 75 65 2e 20 54 68 69 73 0d 69 6e 66 |league. This.inf| 00000ee0 6f 72 6d 61 74 69 6f 6e 20 69 73 20 74 68 65 6e |ormation is then| 00000ef0 20 75 73 65 64 20 74 6f 20 70 72 65 64 69 63 74 | used to predict| 00000f00 20 74 68 65 20 6f 75 74 63 6f 6d 65 20 6f 66 20 | the outcome of | 00000f10 74 68 65 20 6d 61 74 63 68 2e 20 49 74 20 69 73 |the match. It is| 00000f20 0d 69 6d 70 6f 72 74 61 6e 74 20 74 6f 20 75 6e |.important to un| 00000f30 64 65 72 73 74 61 6e 64 20 68 6f 77 20 74 68 69 |derstand how thi| 00000f40 73 20 70 72 6f 63 65 73 73 20 77 6f 72 6b 73 2c |s process works,| 00000f50 20 61 73 20 74 68 65 20 75 73 65 72 20 6d 75 73 | as the user mus| 00000f60 74 20 70 72 6f 76 69 64 65 0d 68 69 73 20 6f 77 |t provide.his ow| 00000f70 6e 20 61 6c 67 6f 72 69 74 68 6d 20 75 73 69 6e |n algorithm usin| 00000f80 67 20 74 68 69 73 20 64 61 74 61 21 20 54 68 65 |g this data! The| 00000f90 20 69 6e 66 6f 72 6d 61 74 69 6f 6e 20 69 73 20 | information is | 00000fa0 6b 65 70 74 20 69 6e 20 74 68 65 0d 66 6f 6c 6c |kept in the.foll| 00000fb0 6f 77 69 6e 67 20 61 72 72 61 79 73 3a 0d 0d 49 |owing arrays:..I| 00000fc0 54 45 4d 20 20 20 20 20 20 20 20 20 20 20 20 20 |TEM | 00000fd0 20 20 20 20 20 20 20 20 20 20 20 48 4f 4d 45 1a | HOME.| 00000fe0 54 45 41 4d 20 20 20 20 20 20 20 41 57 41 59 1a |TEAM AWAY.| 00000ff0 54 45 41 4d 0d 3d 3d 3d 3d 20 20 20 20 20 20 20 |TEAM.==== | 00001000 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001010 20 3d 3d 3d 3d 3d 3d 3d 3d 3d 20 20 20 20 20 20 | ========= | 00001020 20 3d 3d 3d 3d 3d 3d 3d 3d 3d 0d 4c 65 61 67 75 | =========.Leagu| 00001030 65 20 70 6f 69 6e 74 73 20 67 61 69 6e 65 64 3a |e points gained:| 00001040 20 20 20 20 20 20 20 20 20 50 54 28 6d 29 20 20 | PT(m) | 00001050 20 20 20 20 20 20 20 20 20 50 54 28 6e 29 0d 54 | PT(n).T| 00001060 6f 74 61 6c 20 6d 61 74 63 68 65 73 20 70 6c 61 |otal matches pla| 00001070 79 65 64 3a 20 20 20 20 20 20 20 20 20 50 28 6d |yed: P(m| 00001080 29 20 20 20 20 20 20 20 20 20 20 20 20 50 28 6e |) P(n| 00001090 29 0d 47 6f 61 6c 73 20 73 63 6f 72 65 64 20 66 |).Goals scored f| 000010a0 6f 72 20 74 65 61 6d 3a 20 20 20 20 20 20 20 20 |or team: | 000010b0 46 28 6d 29 20 20 20 20 20 20 20 20 20 20 20 20 |F(m) | 000010c0 46 28 6e 29 0d 47 6f 61 6c 73 20 73 63 6f 72 65 |F(n).Goals score| 000010d0 64 20 61 67 61 69 6e 73 74 20 74 65 61 6d 3a 20 |d against team: | 000010e0 20 20 20 41 28 6d 29 20 20 20 20 20 20 20 20 20 | A(m) | 000010f0 20 20 20 41 28 6e 29 0d 47 61 6d 65 73 20 6c 6f | A(n).Games lo| 00001100 73 74 3a 20 20 20 20 20 20 20 20 20 20 20 20 20 |st: | 00001110 20 20 20 20 20 20 4c 28 6d 29 20 20 20 20 20 20 | L(m) | 00001120 20 20 20 20 20 20 4c 28 6e 29 0d 47 61 6d 65 73 | L(n).Games| 00001130 20 77 6f 6e 3a 20 20 20 20 20 20 20 20 20 20 20 | won: | 00001140 20 20 20 20 20 20 20 20 20 57 28 6d 29 20 20 20 | W(m) | 00001150 20 20 20 20 20 20 20 20 20 57 28 6e 29 0d 47 61 | W(n).Ga| 00001160 6d 65 73 20 64 72 61 77 6e 3a 20 20 20 20 20 20 |mes drawn: | 00001170 20 20 20 20 20 20 20 20 20 20 20 20 44 28 6d 29 | D(m)| 00001180 20 20 20 20 20 20 20 20 20 20 20 20 44 28 6e 29 | D(n)| 00001190 0d 0d 41 20 66 6f 72 6d 75 6c 61 20 6d 75 73 74 |..A formula must| 000011a0 20 62 65 20 64 65 76 69 73 65 64 20 74 6f 20 75 | be devised to u| 000011b0 73 65 20 61 73 20 6d 75 63 68 20 6f 66 20 74 68 |se as much of th| 000011c0 69 73 20 69 6e 66 6f 72 6d 61 74 69 6f 6e 20 61 |is information a| 000011d0 73 20 69 73 0d 6e 65 63 65 73 73 61 72 79 20 74 |s is.necessary t| 000011e0 6f 20 70 72 6f 64 75 63 65 20 61 20 77 69 6e 6e |o produce a winn| 000011f0 69 6e 67 20 73 6f 6c 75 74 69 6f 6e 2e 20 54 68 |ing solution. Th| 00001200 65 20 66 6f 72 6d 75 6c 61 20 6d 75 73 74 20 62 |e formula must b| 00001210 65 20 6f 66 20 74 68 65 20 66 6f 72 6d 3a 0d 0d |e of the form:..| 00001220 20 3d 20 28 53 74 72 65 6e 67 74 68 20 6f 66 20 | = (Strength of | 00001230 61 77 61 79 20 74 65 61 6d 29 20 2d 20 28 73 74 |away team) - (st| 00001240 72 65 6e 67 74 68 20 6f 66 20 68 6f 6d 65 20 74 |rength of home t| 00001250 65 61 6d 29 0d 0d 69 2e 65 2e 20 69 74 20 6d 75 |eam)..i.e. it mu| 00001260 73 74 20 63 61 6c 63 75 6c 61 74 65 20 61 20 76 |st calculate a v| 00001270 61 6c 75 65 20 66 6f 72 20 74 68 65 20 68 6f 6d |alue for the hom| 00001280 65 20 74 65 61 6d 2c 20 74 68 65 6e 20 61 20 76 |e team, then a v| 00001290 61 6c 75 65 20 66 6f 72 20 74 68 65 0d 61 77 61 |alue for the.awa| 000012a0 79 20 74 65 61 6d 2c 20 74 68 65 6e 20 73 75 62 |y team, then sub| 000012b0 74 72 61 63 74 20 6f 6e 65 20 72 65 73 75 6c 74 |tract one result| 000012c0 20 66 72 6f 6d 20 74 68 65 20 6f 74 68 65 72 2e | from the other.| 000012d0 20 43 61 6c 63 75 6c 61 74 69 6f 6e 73 20 74 68 | Calculations th| 000012e0 61 74 0d 70 72 6f 64 75 63 65 20 72 65 73 75 6c |at.produce resul| 000012f0 74 73 20 63 6c 6f 73 65 73 74 20 74 6f 20 7a 65 |ts closest to ze| 00001300 72 6f 20 61 72 65 20 63 6f 6e 73 69 64 65 72 65 |ro are considere| 00001310 64 20 6d 6f 72 65 20 6c 69 6b 65 6c 79 20 74 6f |d more likely to| 00001320 20 62 65 20 64 72 61 77 6e 0d 67 61 6d 65 73 20 | be drawn.games | 00001330 74 68 61 6e 20 74 68 6f 73 65 20 70 72 6f 64 75 |than those produ| 00001340 63 69 6e 67 20 68 69 67 68 20 76 61 6c 75 65 73 |cing high values| 00001350 2e 20 53 6f 20 74 77 6f 20 74 65 61 6d 73 20 70 |. So two teams p| 00001360 72 6f 64 75 63 69 6e 67 20 61 20 73 69 6d 69 6c |roducing a simil| 00001370 61 72 0d 6e 75 6d 62 65 72 20 77 69 6c 6c 20 62 |ar.number will b| 00001380 65 20 6d 6f 72 65 20 6c 69 6b 65 6c 79 20 74 6f |e more likely to| 00001390 20 72 65 73 75 6c 74 20 69 6e 20 61 20 64 72 61 | result in a dra| 000013a0 77 20 74 68 61 6e 20 74 77 6f 20 74 65 61 6d 73 |w than two teams| 000013b0 20 70 72 6f 64 75 63 69 6e 67 0d 76 65 72 79 20 | producing.very | 000013c0 64 69 66 66 65 72 65 6e 74 20 76 61 6c 75 65 73 |different values| 000013d0 2e 20 54 68 65 20 66 6f 72 6d 75 6c 61 20 69 6e |. The formula in| 000013e0 63 6c 75 64 65 64 20 69 6e 20 74 68 65 20 70 72 |cluded in the pr| 000013f0 6f 67 72 61 6d 20 69 73 20 76 65 72 79 20 73 69 |ogram is very si| 00001400 6d 70 6c 65 2c 0d 61 6e 64 20 6f 6e 6c 79 20 63 |mple,.and only c| 00001410 6f 6d 70 61 72 65 73 20 74 68 65 20 74 77 6f 20 |ompares the two | 00001420 74 65 61 6d 73 20 6c 65 61 67 75 65 20 70 6f 73 |teams league pos| 00001430 69 74 69 6f 6e 73 2e 20 54 6f 20 67 69 76 65 20 |itions. To give | 00001440 73 6f 6d 65 20 69 64 65 61 20 6f 66 20 68 6f 77 |some idea of how| 00001450 0d 74 6f 20 65 6e 74 65 72 20 61 20 73 75 69 74 |.to enter a suit| 00001460 61 62 6c 65 20 66 6f 72 6d 75 6c 61 2c 20 73 6f |able formula, so| 00001470 6d 65 20 65 78 61 6d 70 6c 65 73 20 6f 66 20 63 |me examples of c| 00001480 61 6c 63 75 6c 61 74 69 6e 67 20 74 65 61 6d 20 |alculating team | 00001490 73 74 72 65 6e 67 74 68 0d 66 6f 6c 6c 6f 77 3a |strength.follow:| 000014a0 0d 0d 20 3d 28 50 54 28 6d 29 2b 28 44 28 6d 29 |.. =(PT(m)+(D(m)| 000014b0 2a 33 29 2d 57 28 6d 29 29 2d 28 50 54 28 6e 29 |*3)-W(m))-(PT(n)| 000014c0 2b 28 44 28 6e 29 2a 33 29 2d 57 28 6e 29 29 0d |+(D(n)*3)-W(n)).| 000014d0 0d 54 68 69 73 20 75 73 65 73 20 70 6f 69 6e 74 |.This uses point| 000014e0 73 20 67 61 69 6e 65 64 2c 20 64 72 61 77 6e 20 |s gained, drawn | 000014f0 67 61 6d 65 73 20 61 6e 64 20 67 61 6d 65 73 20 |games and games | 00001500 77 6f 6e 20 66 6f 72 20 65 61 63 68 20 74 65 61 |won for each tea| 00001510 6d 0d 0d 20 3d 28 50 28 6d 29 2f 44 28 6d 29 29 |m.. =(P(m)/D(m))| 00001520 2d 28 50 28 6e 29 2f 44 28 6e 29 29 0d 0d 63 61 |-(P(n)/D(n))..ca| 00001530 6c 63 75 6c 61 74 65 73 20 74 68 65 20 6e 75 6d |lculates the num| 00001540 62 65 72 20 6f 66 20 6d 61 74 63 68 65 73 20 70 |ber of matches p| 00001550 6c 61 79 65 64 2c 20 64 69 76 69 64 65 64 20 62 |layed, divided b| 00001560 79 20 74 68 65 20 6e 75 6d 62 65 72 20 6f 66 20 |y the number of | 00001570 6d 61 74 63 68 65 73 0d 64 72 61 77 6e 20 66 6f |matches.drawn fo| 00001580 72 20 65 61 63 68 20 74 65 61 6d 0d 0d 20 3d 50 |r each team.. =P| 00001590 54 28 6d 29 2d 50 54 28 6e 29 0d 0d 63 61 6c 63 |T(m)-PT(n)..calc| 000015a0 75 6c 61 74 65 73 20 74 68 65 20 6e 75 6d 62 65 |ulates the numbe| 000015b0 72 20 6f 66 20 70 6f 69 6e 74 73 20 67 61 69 6e |r of points gain| 000015c0 65 64 20 66 6f 72 20 65 61 63 68 20 74 65 61 6d |ed for each team| 000015d0 0d 0d 20 3d 28 50 28 6d 29 2f 4c 28 6d 29 29 2d |.. =(P(m)/L(m))-| 000015e0 28 50 28 6e 29 2f 57 28 6e 29 29 0d 0d 73 74 75 |(P(n)/W(n))..stu| 000015f0 64 69 65 73 20 74 68 65 20 6e 75 6d 62 65 72 20 |dies the number | 00001600 6f 66 20 67 61 6d 65 73 20 6c 6f 73 74 20 62 79 |of games lost by| 00001610 20 74 68 65 20 68 6f 6d 65 20 74 65 61 6d 2c 20 | the home team, | 00001620 61 6e 64 20 74 68 65 20 6e 75 6d 62 65 72 20 6f |and the number o| 00001630 66 20 67 61 6d 65 73 0d 77 6f 6e 20 62 79 20 61 |f games.won by a| 00001640 77 61 79 20 74 65 61 6d 20 28 61 20 70 65 72 66 |way team (a perf| 00001650 65 63 74 6c 79 20 22 6c 65 67 61 6c 22 20 69 66 |ectly "legal" if| 00001660 20 6e 6f 74 20 76 65 72 79 20 6c 6f 67 69 63 61 | not very logica| 00001670 6c 20 66 6f 72 6d 75 6c 61 21 29 0d 0d 54 68 65 |l formula!)..The| 00001680 73 65 20 66 6f 72 6d 75 6c 61 65 20 63 61 6e 20 |se formulae can | 00001690 62 65 20 76 65 72 79 20 73 69 6d 70 6c 65 20 73 |be very simple s| 000016a0 75 63 68 20 61 73 3a 0d 0d 20 3d 44 28 6d 29 2d |uch as:.. =D(m)-| 000016b0 44 28 6e 29 0d 0d 77 68 69 63 68 20 63 6f 6d 70 |D(n)..which comp| 000016c0 61 72 65 73 20 74 68 65 20 6e 75 6d 62 65 72 20 |ares the number | 000016d0 6f 66 20 64 72 61 77 6e 20 6d 61 74 63 68 65 73 |of drawn matches| 000016e0 20 6f 66 20 65 61 63 68 20 74 65 61 6d 2c 20 6f | of each team, o| 000016f0 72 20 6d 6f 72 65 20 63 6f 6d 70 6c 65 78 2c 0d |r more complex,.| 00001700 73 75 63 68 20 61 73 3a 0d 0d 20 3d 28 28 4c 28 |such as:.. =((L(| 00001710 6d 29 2b 28 50 28 6d 29 2a 32 30 29 29 2a 44 28 |m)+(P(m)*20))*D(| 00001720 6d 29 29 2d 28 28 57 28 6e 29 2b 28 50 28 6e 29 |m))-((W(n)+(P(n)| 00001730 2a 32 30 29 29 2a 44 28 6e 29 29 0d 0d 77 68 69 |*20))*D(n))..whi| 00001740 63 68 20 63 6f 6e 73 69 64 65 72 73 20 6d 61 74 |ch considers mat| 00001750 63 68 65 73 20 64 72 61 77 6e 2c 20 6c 6f 73 74 |ches drawn, lost| 00001760 2c 20 77 6f 6e 2c 20 65 74 63 2e 20 41 20 77 69 |, won, etc. A wi| 00001770 6e 6e 69 6e 67 20 73 6f 6c 75 74 69 6f 6e 20 69 |nning solution i| 00001780 73 0d 6c 69 6b 65 6c 79 20 74 6f 20 62 65 20 65 |s.likely to be e| 00001790 76 65 6e 20 6d 6f 72 65 20 69 6e 76 6f 6c 76 65 |ven more involve| 000017a0 64 21 20 49 74 20 73 68 6f 75 6c 64 20 62 65 20 |d! It should be | 000017b0 72 65 6d 65 6d 62 65 72 65 64 20 74 68 61 74 2c |remembered that,| 000017c0 0d 70 61 72 74 69 63 75 6c 61 72 6c 79 20 65 61 |.particularly ea| 000017d0 72 6c 79 20 69 6e 20 74 68 65 20 73 65 61 73 6f |rly in the seaso| 000017e0 6e 2c 20 73 65 76 65 72 61 6c 20 6f 66 20 74 68 |n, several of th| 000017f0 65 73 65 20 76 61 6c 75 65 73 20 77 69 6c 6c 20 |ese values will | 00001800 62 65 20 65 71 75 61 6c 20 74 6f 0d 7a 65 72 6f |be equal to.zero| 00001810 2c 20 61 6e 64 20 61 6e 20 65 72 72 6f 72 20 77 |, and an error w| 00001820 69 6c 6c 20 72 65 73 75 6c 74 20 69 66 20 79 6f |ill result if yo| 00001830 75 72 20 66 6f 72 6d 75 6c 61 20 69 6e 63 6c 75 |ur formula inclu| 00001840 64 65 73 20 61 20 27 64 69 76 69 73 69 6f 6e 0d |des a 'division.| 00001850 62 79 20 7a 65 72 6f 27 21 0d 0d 59 6f 75 72 20 |by zero'!..Your | 00001860 64 65 73 69 72 65 64 20 66 6f 72 6d 75 6c 61 20 |desired formula | 00001870 73 68 6f 75 6c 64 20 72 65 70 6c 61 63 65 20 74 |should replace t| 00001880 68 65 20 6f 6e 65 20 67 69 76 65 6e 20 69 6e 20 |he one given in | 00001890 6c 69 6e 65 20 35 30 30 30 20 6f 66 20 74 68 65 |line 5000 of the| 000018a0 0d 70 72 6f 67 72 61 6d 20 22 46 6f 6f 74 22 2c |.program "Foot",| 000018b0 20 74 68 65 6e 20 74 68 65 20 6e 65 77 20 76 65 | then the new ve| 000018c0 72 73 69 6f 6e 20 73 61 76 65 64 20 74 6f 20 64 |rsion saved to d| 000018d0 69 73 63 20 62 65 66 6f 72 65 20 75 73 65 2e 0d |isc before use..| 000018e0 0d 57 68 65 6e 20 74 68 65 20 70 72 6f 67 72 61 |.When the progra| 000018f0 6d 20 69 73 20 72 75 6e 2c 20 79 6f 75 20 61 72 |m is run, you ar| 00001900 65 20 61 73 6b 65 64 20 69 66 20 74 68 65 20 6d |e asked if the m| 00001910 61 74 63 68 20 64 61 74 61 20 69 73 20 74 6f 20 |atch data is to | 00001920 62 65 20 72 65 61 64 0d 66 72 6f 6d 20 64 69 73 |be read.from dis| 00001930 63 2e 20 54 68 69 73 20 69 73 20 6f 6e 6c 79 20 |c. This is only | 00001940 70 6f 73 73 69 62 6c 65 20 69 66 20 69 74 20 68 |possible if it h| 00001950 61 73 20 70 72 65 76 69 6f 75 73 6c 79 20 62 65 |as previously be| 00001960 65 6e 20 73 61 76 65 64 20 74 6f 20 64 69 73 63 |en saved to disc| 00001970 0d 75 73 69 6e 67 20 74 68 65 20 70 72 6f 67 72 |.using the progr| 00001980 61 6d 20 22 4d 61 74 63 68 22 20 28 73 65 65 20 |am "Match" (see | 00001990 61 62 6f 76 65 29 2c 20 62 75 74 20 77 69 6c 6c |above), but will| 000019a0 20 73 61 76 65 20 61 20 6c 6f 74 20 6f 66 20 74 | save a lot of t| 000019b0 69 6d 65 20 69 66 20 69 74 20 0d 63 61 6e 20 62 |ime if it .can b| 000019c0 65 20 72 65 61 64 20 66 72 6f 6d 20 61 20 64 69 |e read from a di| 000019d0 73 63 20 66 69 6c 65 2e 0d 0d 59 6f 75 20 61 72 |sc file...You ar| 000019e0 65 20 74 68 65 6e 20 61 73 6b 65 64 20 69 66 20 |e then asked if | 000019f0 74 68 65 20 6c 65 61 67 75 65 20 64 65 74 61 69 |the league detai| 00001a00 6c 73 20 61 72 65 20 74 6f 20 62 65 20 72 65 61 |ls are to be rea| 00001a10 64 20 66 72 6f 6d 20 64 69 73 63 2e 20 41 67 61 |d from disc. Aga| 00001a20 69 6e 2c 0d 74 68 69 73 20 6d 61 79 20 6f 6e 6c |in,.this may onl| 00001a30 79 20 62 65 20 64 6f 6e 65 20 69 66 20 74 68 69 |y be done if thi| 00001a40 73 20 64 61 74 61 20 68 61 73 20 61 6c 72 65 61 |s data has alrea| 00001a50 64 79 20 62 65 65 6e 20 73 61 76 65 64 20 74 6f |dy been saved to| 00001a60 20 64 69 73 63 20 66 72 6f 6d 20 61 0d 70 72 65 | disc from a.pre| 00001a70 76 69 6f 75 73 20 72 75 6e 20 6f 66 20 74 68 65 |vious run of the| 00001a80 20 22 46 6f 6f 74 22 20 70 72 6f 67 72 61 6d 2e | "Foot" program.| 00001a90 20 28 54 68 65 20 64 61 74 61 20 69 73 20 61 75 | (The data is au| 00001aa0 74 6f 6d 61 74 69 63 61 6c 6c 79 20 73 61 76 65 |tomatically save| 00001ab0 64 20 74 6f 0d 64 69 73 63 20 65 61 63 68 20 74 |d to.disc each t| 00001ac0 69 6d 65 20 22 46 6f 6f 74 22 20 69 73 20 72 75 |ime "Foot" is ru| 00001ad0 6e 2e 29 0d 0d 49 66 20 74 68 65 20 6c 65 61 67 |n.)..If the leag| 00001ae0 75 65 20 64 61 74 61 20 68 61 73 20 62 65 65 6e |ue data has been| 00001af0 20 74 61 6b 65 6e 20 66 72 6f 6d 20 43 45 45 46 | taken from CEEF| 00001b00 41 58 2c 20 79 6f 75 20 77 69 6c 6c 20 74 68 65 |AX, you will the| 00001b10 6e 20 62 65 20 6f 66 66 65 72 65 64 20 61 0d 63 |n be offered a.c| 00001b20 68 61 6e 63 65 20 74 6f 20 73 65 65 20 28 6f 72 |hance to see (or| 00001b30 20 70 72 69 6e 74 20 6f 75 74 29 20 61 20 6c 69 | print out) a li| 00001b40 73 74 20 6f 66 20 74 68 65 20 74 65 61 6d 20 6e |st of the team n| 00001b50 61 6d 65 73 20 61 6e 64 20 74 68 65 69 72 0d 63 |ames and their.c| 00001b60 6f 72 72 65 73 70 6f 6e 64 69 6e 67 20 6e 75 6d |orresponding num| 00001b70 62 65 72 73 2e 20 54 68 69 73 20 6f 70 74 69 6f |bers. This optio| 00001b80 6e 20 69 73 20 6e 6f 74 20 61 76 61 69 6c 61 62 |n is not availab| 00001b90 6c 65 20 69 66 20 74 68 65 20 64 61 74 61 20 69 |le if the data i| 00001ba0 73 20 72 65 61 64 0d 66 72 6f 6d 20 64 69 73 63 |s read.from disc| 00001bb0 2c 20 61 73 20 74 68 65 20 70 72 6f 67 72 61 6d |, as the program| 00001bc0 20 74 68 65 6e 20 72 65 6c 69 65 73 20 6f 6e 20 | then relies on | 00001bd0 61 20 63 6f 6d 70 72 65 73 73 65 64 20 76 65 72 |a compressed ver| 00001be0 73 69 6f 6e 20 6f 66 20 74 68 65 20 74 65 61 6d |sion of the team| 00001bf0 0d 6e 61 6d 65 73 20 77 68 69 63 68 20 6d 61 79 |.names which may| 00001c00 20 6e 6f 74 20 62 65 20 76 65 72 79 20 6d 75 63 | not be very muc| 00001c10 68 20 68 65 6c 70 20 74 6f 20 79 6f 75 21 20 54 |h help to you! T| 00001c20 68 65 20 74 65 61 6d 20 6e 61 6d 65 73 20 61 6e |he team names an| 00001c30 64 20 6e 75 6d 62 65 72 73 0d 77 69 6c 6c 20 62 |d numbers.will b| 00001c40 65 20 6e 65 65 64 65 64 20 6c 61 74 65 72 20 69 |e needed later i| 00001c50 66 20 79 6f 75 20 68 61 76 65 20 6f 70 74 65 64 |f you have opted| 00001c60 20 74 6f 20 6d 61 6e 75 61 6c 6c 79 20 65 6e 74 | to manually ent| 00001c70 65 72 20 74 68 65 20 66 69 78 74 75 72 65 73 0d |er the fixtures.| 00001c80 6c 69 73 74 2e 20 49 66 20 61 20 70 72 69 6e 74 |list. If a print| 00001c90 6f 75 74 20 6f 66 20 74 68 69 73 20 6c 69 73 74 |out of this list| 00001ca0 20 69 73 20 72 65 71 75 69 72 65 64 2c 20 73 69 | is required, si| 00001cb0 6d 70 6c 79 20 73 65 74 20 79 6f 75 72 20 70 72 |mply set your pr| 00001cc0 69 6e 74 65 72 20 22 6f 6e 0d 6c 69 6e 65 22 20 |inter "on.line" | 00001cd0 62 65 66 6f 72 65 20 73 65 6c 65 63 74 69 6e 67 |before selecting| 00001ce0 20 74 68 69 73 20 6f 70 74 69 6f 6e 2e 0d 0d 54 | this option...T| 00001cf0 68 65 20 70 72 6f 67 72 61 6d 20 70 72 6f 63 65 |he program proce| 00001d00 65 64 73 20 74 6f 20 72 65 71 75 65 73 74 20 74 |eds to request t| 00001d10 68 65 20 6d 61 74 63 68 20 64 61 74 61 20 69 6e |he match data in| 00001d20 20 6e 75 6d 65 72 69 63 20 66 6f 72 6d 2e 20 49 | numeric form. I| 00001d30 66 20 74 68 65 0d 64 61 74 61 20 69 73 20 72 65 |f the.data is re| 00001d40 61 64 20 66 72 6f 6d 20 64 69 73 63 2c 20 74 68 |ad from disc, th| 00001d50 65 20 66 69 78 74 75 72 65 73 20 6c 69 73 74 20 |e fixtures list | 00001d60 77 69 6c 6c 20 62 65 20 72 65 61 64 20 69 6e 2c |will be read in,| 00001d70 20 73 74 6f 70 70 69 6e 67 20 61 74 20 74 68 65 | stopping at the| 00001d80 0d 62 6f 74 74 6f 6d 20 6f 66 20 65 61 63 68 20 |.bottom of each | 00001d90 73 63 72 65 65 6e 20 74 6f 20 61 6c 6c 6f 77 20 |screen to allow | 00001da0 79 6f 75 20 74 6f 20 6c 6f 6f 6b 20 66 6f 72 20 |you to look for | 00001db0 61 6e 79 20 6e 65 63 65 73 73 61 72 79 20 63 6f |any necessary co| 00001dc0 72 72 65 63 74 69 6f 6e 73 2e 0d 50 72 65 73 73 |rrections..Press| 00001dd0 20 53 48 49 46 54 20 74 6f 20 73 63 72 6f 6c 6c | SHIFT to scroll| 00001de0 20 74 68 65 20 73 63 72 65 65 6e 2e 20 49 66 20 | the screen. If | 00001df0 74 68 69 73 20 64 61 74 61 20 6e 65 65 64 73 20 |this data needs | 00001e00 74 6f 20 62 65 20 65 6e 74 65 72 65 64 0d 6d 61 |to be entered.ma| 00001e10 6e 75 61 6c 6c 79 2c 20 74 79 70 65 20 69 6e 20 |nually, type in | 00001e20 74 68 65 20 61 70 70 72 6f 70 72 69 61 74 65 20 |the appropriate | 00001e30 74 65 61 6d 20 6e 75 6d 62 65 72 20 61 74 20 74 |team number at t| 00001e40 68 65 20 70 72 6f 6d 70 74 2c 20 61 73 20 74 61 |he prompt, as ta| 00001e50 6b 65 6e 20 66 72 6f 6d 0d 74 68 65 20 74 65 61 |ken from.the tea| 00001e60 6d 20 6c 69 73 74 20 6f 66 66 65 72 65 64 20 65 |m list offered e| 00001e70 61 72 6c 69 65 72 2e 20 41 6e 79 20 63 6f 72 72 |arlier. Any corr| 00001e80 65 63 74 69 6f 6e 73 20 63 61 6e 20 62 65 20 6d |ections can be m| 00001e90 61 64 65 20 61 66 74 65 72 20 61 6c 6c 20 74 68 |ade after all th| 00001ea0 65 0d 6d 61 74 63 68 20 64 61 74 61 20 68 61 73 |e.match data has| 00001eb0 20 62 65 65 6e 20 65 6e 74 65 72 65 64 2e 0d 0d | been entered...| 00001ec0 54 68 65 20 70 72 6f 67 72 61 6d 20 77 69 6c 6c |The program will| 00001ed0 20 74 68 65 6e 20 63 61 6c 63 75 6c 61 74 65 20 | then calculate | 00001ee0 74 68 65 20 6d 6f 73 74 20 6c 69 6b 65 6c 79 20 |the most likely | 00001ef0 31 38 20 6d 61 74 63 68 65 73 20 74 6f 20 72 65 |18 matches to re| 00001f00 73 75 6c 74 20 69 6e 20 61 0d 64 72 61 77 2e 20 |sult in a.draw. | 00001f10 49 66 20 79 6f 75 20 77 61 6e 74 20 74 68 69 73 |If you want this| 00001f20 20 73 65 6c 65 63 74 69 6f 6e 20 73 65 6e 74 20 | selection sent | 00001f30 74 6f 20 79 6f 75 72 20 70 72 69 6e 74 65 72 2c |to your printer,| 00001f40 20 65 6e 73 75 72 65 20 74 68 61 74 20 79 6f 75 | ensure that you| 00001f50 72 0d 70 72 69 6e 74 65 72 20 69 73 20 22 6f 6e |r.printer is "on| 00001f60 20 6c 69 6e 65 22 2e 20 4f 74 68 65 72 77 69 73 | line". Otherwis| 00001f70 65 20 69 74 20 77 69 6c 6c 20 62 65 20 73 65 6e |e it will be sen| 00001f80 74 20 74 6f 20 74 68 65 20 73 63 72 65 65 6e 20 |t to the screen | 00001f90 6f 6e 6c 79 2e 0d 0d 33 2e 20 52 65 73 75 6c 74 |only...3. Result| 00001fa0 73 3a 0d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 0d 0d |s:.===========..| 00001fb0 44 75 72 69 6e 67 20 74 68 65 20 65 78 65 63 75 |During the execu| 00001fc0 74 69 6f 6e 20 6f 66 20 22 46 6f 6f 74 22 2c 20 |tion of "Foot", | 00001fd0 61 20 64 61 74 61 20 66 69 6c 65 20 69 73 20 63 |a data file is c| 00001fe0 72 65 61 74 65 64 20 6f 6e 20 64 69 73 63 20 6f |reated on disc o| 00001ff0 66 20 74 68 65 0d 6d 61 74 63 68 65 73 20 70 72 |f the.matches pr| 00002000 65 64 69 63 74 65 64 2e 20 22 52 65 73 75 6c 74 |edicted. "Result| 00002010 73 22 20 77 69 6c 6c 20 61 6e 61 6c 79 73 65 20 |s" will analyse | 00002020 74 68 65 20 61 63 74 75 61 6c 20 72 65 73 75 6c |the actual resul| 00002030 74 73 20 61 73 0d 74 72 61 6e 73 6d 69 74 74 65 |ts as.transmitte| 00002040 64 20 62 79 20 43 45 45 46 41 58 2c 20 61 6e 64 |d by CEEFAX, and| 00002050 20 63 61 6c 63 75 6c 61 74 65 20 74 68 65 20 6d | calculate the m| 00002060 61 78 69 6d 75 6d 20 70 6f 6f 6c 73 20 70 6f 69 |aximum pools poi| 00002070 6e 74 73 20 74 68 61 74 20 68 61 76 65 0d 67 61 |nts that have.ga| 00002080 69 6e 65 64 20 75 73 69 6e 67 20 74 68 65 20 67 |ined using the g| 00002090 69 76 65 6e 20 66 6f 72 65 63 61 73 74 2e 0d 0d |iven forecast...| 000020a0 49 66 20 79 6f 75 20 75 73 65 20 61 20 70 6f 6f |If you use a poo| 000020b0 6c 73 20 65 6e 74 72 79 20 77 69 74 68 20 6d 6f |ls entry with mo| 000020c0 72 65 20 28 6f 72 20 6c 65 73 73 29 20 74 68 61 |re (or less) tha| 000020d0 6e 20 74 65 6e 20 73 65 6c 65 63 74 69 6f 6e 73 |n ten selections| 000020e0 2c 20 74 68 65 0d 61 70 70 72 6f 70 72 69 61 74 |, the.appropriat| 000020f0 65 20 6c 69 6e 65 20 61 74 20 74 68 65 20 62 65 |e line at the be| 00002100 67 69 6e 6e 69 6e 67 20 6f 66 20 74 68 65 20 70 |ginning of the p| 00002110 72 6f 67 72 61 6d 20 6d 75 73 74 20 62 65 20 61 |rogram must be a| 00002120 6c 74 65 72 65 64 2e 20 54 68 65 0d 70 72 6f 67 |ltered. The.prog| 00002130 72 61 6d 20 63 61 6c 63 75 6c 61 74 65 73 20 74 |ram calculates t| 00002140 68 65 20 6d 61 78 69 6d 75 6d 20 70 6f 69 6e 74 |he maximum point| 00002150 73 20 70 6f 73 73 69 62 6c 65 20 75 73 69 6e 67 |s possible using| 00002160 20 61 20 46 75 6c 6c 20 50 65 72 6d 20 70 6c 61 | a Full Perm pla| 00002170 6e 2c 0d 62 75 74 20 61 6c 73 6f 20 70 72 65 73 |n,.but also pres| 00002180 65 6e 74 73 20 74 68 65 20 72 65 73 75 6c 74 73 |ents the results| 00002190 20 69 6e 20 70 6f 6f 6c 73 20 70 6f 69 6e 74 73 | in pools points| 000021a0 20 66 6f 72 6d 61 74 20 66 6f 72 20 6e 6f 72 6d | format for norm| 000021b0 61 6c 20 63 68 65 63 6b 69 6e 67 0d 6f 66 20 61 |al checking.of a| 000021c0 20 63 6f 75 70 6f 6e 2e 0d 0d 54 68 65 20 72 65 | coupon...The re| 000021d0 73 75 6c 74 73 20 61 72 65 20 62 72 6f 61 64 63 |sults are broadc| 000021e0 61 73 74 20 6f 6e 20 42 42 43 31 20 6f 6e 20 61 |ast on BBC1 on a| 000021f0 20 53 61 74 75 72 64 61 79 20 61 66 74 65 72 6e | Saturday aftern| 00002200 6f 6f 6e 2f 65 76 65 6e 69 6e 67 2c 20 61 6e 64 |oon/evening, and| 00002210 0d 74 68 65 6e 20 61 72 65 20 74 72 61 6e 73 66 |.then are transf| 00002220 65 72 72 65 64 20 74 6f 20 42 42 43 32 20 66 6f |erred to BBC2 fo| 00002230 72 20 74 68 65 20 65 61 72 6c 79 20 70 61 72 74 |r the early part| 00002240 20 20 6f 66 20 74 68 65 20 66 6f 6c 6c 6f 77 69 | of the followi| 00002250 6e 67 20 77 65 65 6b 2e 0d 54 68 65 20 70 72 6f |ng week..The pro| 00002260 67 72 61 6d 20 64 65 74 65 63 74 73 20 74 68 65 |gram detects the| 00002270 20 64 61 79 20 6f 6e 20 77 68 69 63 68 20 69 74 | day on which it| 00002280 20 69 73 20 72 75 6e 2c 20 61 6e 64 20 77 69 6c | is run, and wil| 00002290 6c 20 73 65 6c 65 63 74 20 74 68 65 0d 63 6f 72 |l select the.cor| 000022a0 72 65 63 74 20 63 68 61 6e 6e 65 6c 20 61 6e 64 |rect channel and| 000022b0 20 70 61 67 65 20 6e 75 6d 62 65 72 73 20 61 75 | page numbers au| 000022c0 74 6f 6d 61 74 69 63 61 6c 6c 79 2e 20 28 69 2e |tomatically. (i.| 000022d0 65 2e 20 69 66 20 72 75 6e 20 6f 6e 20 53 61 74 |e. if run on Sat| 000022e0 75 72 64 61 79 2c 0d 69 74 20 77 69 6c 6c 20 73 |urday,.it will s| 000022f0 65 6c 65 63 74 20 42 42 43 31 2c 20 70 61 67 65 |elect BBC1, page| 00002300 73 20 33 33 31 20 6f 6e 77 61 72 64 73 2c 20 62 |s 331 onwards, b| 00002310 75 74 20 69 66 20 72 75 6e 20 6f 6e 2c 20 73 61 |ut if run on, sa| 00002320 79 2c 20 4d 6f 6e 64 61 79 2c 20 69 74 0d 77 69 |y, Monday, it.wi| 00002330 6c 6c 20 73 65 6c 65 63 74 20 42 42 43 32 2c 20 |ll select BBC2, | 00002340 20 70 61 67 65 20 33 34 31 2e 29 20 41 20 63 68 | page 341.) A ch| 00002350 65 63 6b 20 69 73 20 63 61 72 72 69 65 64 20 6f |eck is carried o| 00002360 75 74 20 74 6f 20 65 6e 73 75 72 65 20 74 68 65 |ut to ensure the| 00002370 20 61 63 74 75 61 6c 0d 72 65 73 75 6c 74 73 20 | actual.results | 00002380 61 72 65 20 6f 62 74 61 69 6e 65 64 2c 20 61 6e |are obtained, an| 00002390 64 20 6e 6f 74 20 74 68 65 20 68 61 6c 66 2d 74 |d not the half-t| 000023a0 69 6d 65 20 72 65 73 75 6c 74 73 20 6f 72 20 6f |ime results or o| 000023b0 74 68 65 72 20 64 61 74 61 2e 20 41 0d 72 65 70 |ther data. A.rep| 000023c0 6f 72 74 20 77 69 6c 6c 20 62 65 20 67 69 76 65 |ort will be give| 000023d0 6e 2c 20 61 6e 64 20 74 68 65 20 70 72 6f 67 72 |n, and the progr| 000023e0 61 6d 20 74 65 72 6d 69 6e 61 74 65 64 20 69 66 |am terminated if| 000023f0 20 74 68 65 20 72 65 73 75 6c 74 73 20 61 72 65 | the results are| 00002400 20 6e 6f 74 0d 66 6f 75 6e 64 2e 0d 0d 49 66 20 | not.found...If | 00002410 61 20 6d 61 74 63 68 20 69 73 20 64 65 63 6c 61 |a match is decla| 00002420 72 65 64 20 76 6f 69 64 2c 20 6f 72 20 61 20 72 |red void, or a r| 00002430 65 73 75 6c 74 20 64 65 63 69 64 65 64 20 62 79 |esult decided by| 00002440 20 74 68 65 20 50 6f 6f 6c 73 20 70 61 6e 65 6c | the Pools panel| 00002450 2c 20 74 68 65 0d 63 6f 72 72 65 63 74 20 70 6f |, the.correct po| 00002460 6f 6c 73 20 70 6f 69 6e 74 73 20 77 69 6c 6c 20 |ols points will | 00002470 62 65 20 66 6f 75 6e 64 2e 20 53 75 63 68 20 73 |be found. Such s| 00002480 69 74 75 61 74 69 6f 6e 73 20 77 69 6c 6c 20 62 |ituations will b| 00002490 65 20 72 65 70 6f 72 74 65 64 20 77 68 65 6e 0d |e reported when.| 000024a0 74 68 65 20 72 65 73 75 6c 74 73 20 61 72 65 20 |the results are | 000024b0 6c 69 73 74 65 64 20 62 79 20 74 68 65 20 70 72 |listed by the pr| 000024c0 6f 67 72 61 6d 2e 0d 0d 54 68 69 73 20 70 72 6f |ogram...This pro| 000024d0 67 72 61 6d 20 75 73 65 73 20 73 65 76 65 72 61 |gram uses severa| 000024e0 6c 20 6f 66 20 74 68 65 20 73 79 73 74 65 6d 27 |l of the system'| 000024f0 73 20 70 61 67 65 20 67 72 61 62 62 65 72 73 2c |s page grabbers,| 00002500 20 72 65 73 75 6c 74 69 6e 67 20 69 6e 20 61 0d | resulting in a.| 00002510 6d 75 63 68 20 66 61 73 74 65 72 20 65 78 65 63 |much faster exec| 00002520 75 74 69 6f 6e 20 74 69 6d 65 20 74 68 61 6e 20 |ution time than | 00002530 66 72 6f 6d 20 70 72 65 76 69 6f 75 73 20 76 65 |from previous ve| 00002540 72 73 69 6f 6e 73 2e 20 57 68 69 6c 73 74 20 65 |rsions. Whilst e| 00002550 61 63 68 20 70 61 67 65 0d 66 72 6f 6d 20 43 45 |ach page.from CE| 00002560 45 46 41 58 20 69 73 20 62 65 69 6e 67 20 70 72 |EFAX is being pr| 00002570 6f 63 65 73 73 65 64 2c 20 74 68 65 20 73 63 72 |ocessed, the scr| 00002580 65 65 6e 20 77 69 6c 6c 20 69 6e 64 69 63 61 74 |een will indicat| 00002590 65 20 62 72 69 65 66 6c 79 20 77 68 69 63 68 0d |e briefly which.| 000025a0 70 61 72 74 69 63 75 6c 61 72 20 70 6f 6f 6c 73 |particular pools| 000025b0 20 63 6f 75 70 6f 6e 20 6d 61 74 63 68 20 6e 75 | coupon match nu| 000025c0 6d 62 65 72 20 69 73 20 62 65 69 6e 67 20 73 74 |mber is being st| 000025d0 75 64 69 65 64 20 61 74 20 74 68 65 20 74 69 6d |udied at the tim| 000025e0 65 2e 0d 0d 0d 20 20 20 20 20 20 20 20 20 20 20 |e.... | 000025f0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00002600 20 20 20 20 20 20 20 20 20 20 28 63 29 20 4a 65 | (c) Je| 00002610 72 65 6d 79 20 42 72 61 79 73 68 61 77 20 20 20 |remy Brayshaw | 00002620 41 75 67 75 73 74 20 31 39 38 38 0d 0d 0d 4e 6f |August 1988...No| 00002630 74 65 3a 20 54 68 65 20 70 72 6f 67 72 61 6d 73 |te: The programs| 00002640 20 68 61 76 65 20 62 65 65 6e 20 77 72 69 74 74 | have been writt| 00002650 65 6e 20 74 6f 20 6f 70 65 72 61 74 65 20 77 69 |en to operate wi| 00002660 74 68 20 74 68 65 20 42 42 43 20 4d 69 63 72 6f |th the BBC Micro| 00002670 63 6f 6d 70 75 74 65 72 0d 53 79 73 74 65 6d 20 |computer.System | 00002680 54 65 6c 65 74 65 78 74 20 41 64 61 70 74 6f 72 |Teletext Adaptor| 00002690 20 28 62 6f 74 68 20 74 68 65 20 41 63 6f 72 6e | (both the Acorn| 000026a0 20 73 79 73 74 65 6d 20 61 6e 64 20 74 68 65 20 | system and the | 000026b0 6e 65 77 20 47 49 53 20 61 64 61 70 74 6f 72 29 |new GIS adaptor)| 000026c0 0d 61 6e 64 20 41 54 53 20 6f 72 20 41 54 53 2b |.and ATS or ATS+| 000026d0 20 73 6f 66 74 77 61 72 65 2e 20 54 68 65 79 20 | software. They | 000026e0 61 72 65 20 6e 6f 74 20 67 75 61 72 61 6e 74 65 |are not guarante| 000026f0 65 64 20 74 6f 20 66 75 6e 63 74 69 6f 6e 20 63 |ed to function c| 00002700 6f 72 72 65 63 74 6c 79 20 6f 6e 0d 6f 74 68 65 |orrectly on.othe| 00002710 72 20 6d 61 6b 65 73 20 6f 66 20 61 64 61 70 74 |r makes of adapt| 00002720 6f 72 2c 20 65 76 65 6e 20 77 69 74 68 20 41 54 |or, even with AT| 00002730 53 2e 20 54 68 69 73 20 69 73 20 62 65 63 61 75 |S. This is becau| 00002740 73 65 20 73 6f 6d 65 20 6f 74 68 65 72 20 74 65 |se some other te| 00002750 6c 65 74 65 78 74 0d 61 64 61 70 74 6f 72 73 20 |letext.adaptors | 00002760 75 73 65 20 6c 65 73 73 20 76 65 72 73 61 74 69 |use less versati| 00002770 6c 65 20 74 65 6c 65 74 65 78 74 20 72 65 63 65 |le teletext rece| 00002780 70 74 69 6f 6e 20 63 68 69 70 73 2c 20 61 6e 64 |ption chips, and| 00002790 20 69 74 20 69 73 20 6e 6f 74 0d 70 6f 73 73 69 | it is not.possi| 000027a0 62 6c 65 20 74 6f 20 69 6d 70 6c 65 6d 65 6e 74 |ble to implement| 000027b0 20 6d 75 6c 74 69 70 6c 65 20 73 69 6d 75 6c 74 | multiple simult| 000027c0 61 6e 65 6f 75 73 20 70 61 67 65 20 67 72 61 62 |aneous page grab| 000027d0 62 65 72 73 2e 20 54 68 69 73 20 69 73 20 61 0d |bers. This is a.| 000027e0 72 65 73 74 72 69 63 74 69 6f 6e 20 6f 66 20 74 |restriction of t| 000027f0 68 65 20 68 61 72 64 77 61 72 65 2c 20 61 6e 64 |he hardware, and| 00002800 20 63 61 6e 6e 6f 74 20 62 65 20 6f 76 65 72 63 | cannot be overc| 00002810 6f 6d 65 20 69 6e 20 73 6f 66 74 77 61 72 65 2e |ome in software.| 00002820 0d |.| 00002821