1989 CA-TennisTrophy – Doubles

Alex Antonitsch and Balázs Taróczy were the defending champions but lost in the semifinals to Jan Gunnarsson and Anders Järryd.

Doubles
1989 CA-TennisTrophy
Champions Jan Gunnarsson
Anders Järryd
Runners-up Paul Annacone
Kelly Evernden
Final score62, 63

Gunnarsson and Järryd won in the final 62, 63 against Paul Annacone and Kelly Evernden.

Seeds

Draw

Key

First Round Quarterfinals Semifinals Final
1 P Annacone
K Evernden
6 6 7
  G Ivanišević
H Skoff
3 7 5 1 P Annacone
K Evernden
5 6 6
  M Sinner
M Stich
6 7     M Sinner
M Stich
7 4 1
  C di Laura
N Pereira
2 5   1 P Annacone
K Evernden
6 7  
3 O Camporese
D Nargiso
4 7 6   T Nelson
R Smith
1 6  
  J Navrátil
M Vajda
6 6 1 3 O Camporese
D Nargiso
6 6 2
  R Osterthun
U Riglewski
3 4     T Nelson
R Smith
1 7 6
  T Nelson
R Smith
6 6   1 P Annacone
K Evernden
2 3  
  R Haas
G Prpić
7 4 6 4 J Gunnarsson
A Järryd
6 6  
  G Layendecker
T Muster
5 6 3   R Haas
G Prpić
6 3  
  J Arrese
J Clavet
4 6   4 J Gunnarsson
A Järryd
7 6  
4 J Gunnarsson
A Järryd
6 7   4 J Gunnarsson
A Järryd
6 6  
  J Canter
B Willenborg
6 5 5 2 A Antonitsch
B Taróczy
4 3  
  H Günthardt
M Mortensen
4 7 7   H Günthardt
M Mortensen
7 2 3
  T Buchmayer
R Wawra
2 6   2 A Antonitsch
B Taróczy
6 6 6
2 A Antonitsch
B Taróczy
6 7  
gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.