1998 Irish Open
The 1998 Irish Open was a professional ranking snooker tournament, held from 14 to 20 December 1998 at the National Basketball Arena, Dublin, Ireland, of which only one edition was held. Mark Williams won the tournament by defeating Alan McManus 9–4 in the final.
Tournament information | |
---|---|
Dates | 14–20 December 1998 |
Venue | National Basketball Arena |
City | Dublin |
Country | Republic of Ireland |
Organisation(s) | WPBSA |
Format | Ranking event |
Total prize fund | £305,000 |
Winner's share | £50,000 |
Highest break | |
Final | |
Champion | |
Runner-up | |
Score | 9–4 |
← First Last → |
Prize fund
The breakdown of prize money for this year is shown below:[1]
|
|
Main draw
Final
Final: Best of 17 frames. Referee: National Basketball Arena, Dublin, Ireland, 20 December 1998. | ||
Mark Williams |
9–4 | Alan McManus |
Afternoon: 62–25, 64–8, 64–20 (64), 44–36, 78–4 (64), 135–0 (135), 47–60, 49–53 Evening: 7–91 (71),68–1 (53), 75–16 (62), 0–82 (82), 107–0 (65) | ||
Highest break | ||
Century breaks | ||
50+ breaks |
Century breaks
- 139, 133, 118, 103, 101
Mark Williams - 120
Alan McManus - 118, 102
Bradley Jones - 117
James Wattana - 109, 100
Ken Doherty - 106
Tony Drago - 104
Anthony Hamilton - 104, 100
Stephen Hendry
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description='Compile a WHY program')parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```The compiler for the new `WHY` language. Made as a joke because someone on the esolangs server insisted that all compiled languages were fast.
gollark: BT being bad, who would ever guess so?
gollark: Amazing, right?
gollark: Try running potatOS on it.
gollark: Now running virtualization inside the potato farms for funlolz.
References
- "Irish Open 1998". snooker.org. Retrieved 29 November 2017.
- "Irish Open". snooker.org. Retrieved 29 November 2017.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.