1982 Toyota Series Championships – Singles

Tracy Austin was the defending champion, but lost in semifinals to Chris Evert Lloyd with a double bagel.[1]

Singles
1982 Toyota Series Championships
Champion Martina Navratilova
Runner-up Chris Evert Lloyd
Final score4–6, 6–1, 6–2
Draw12
Seeds4

Martina Navratilova won the title by defeating Chris Evert Lloyd 4–6, 6–1, 6–2 in the final.

Seeds

All seeds received a bye to the quarterfinals.

  1. Martina Navratilova (Champion)
  2. Chris Evert Lloyd (Final)
  3. Andrea Jaeger (Quarterfinals)
  4. Hana Mandlíková (Semifinals)

Draw

Key

Draw

First Round Quarterfinals Semifinals Final
1 Martina Navratilova 6 6
Bonnie Gadusek 1 1 Wendy Turnbull 2 1
Wendy Turnbull 6 6 1 Martina Navratilova 7 6
4 Hana Mandlíková 6 1
4 Hana Mandlíková 4 6 7
Barbara Potter 5 6 6 Barbara Potter 6 3 6
Virginia Ruzici 7 3 2 1 Martina Navratilova 4 6 6
Tracy Austin 6 4 6 2 Chris Evert Lloyd 6 1 2
Mima Jaušovec 2 6 1 Tracy Austin 6 6
3 Andrea Jaeger 4 4
Tracy Austin 0 0
Pam Shriver 6 7 2 Chris Evert Lloyd 6 6
Bettina Bunge 3 6 Pam Shriver 2 3
2 Chris Evert Lloyd 6 6
gollark: It only works if you also have GCC installed.
gollark: That's the compiler.
gollark: Yep!
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])```
gollark: And *is* Haskell necessarily that fast?

References

  1. Evert, Chris. "Results by Opponent - A". CHRISSIE: The Official Chris Evert Webosphere. Retrieved 24 April 2018. TRACY AUSTIN (USA) 8:9, 1982 Toyota Championships SF W 6-0, 6-0
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.