Roycea
Roycea is a genus of plants formerly in the family Chenopodiaceae, and now in the Amaranthaceae. The genus was first described in 1948 by Charles Austin Gardner,[1] and the genus name honours Robert Dunlop Royce (a helper at the Perth Herbarium).[2] The entire genus is endemic to Western Australia.[3] There are no synonyms.[1][4]
| Roycea | |
|---|---|
![]() | |
| Roycea pycnophylloides | |
| Scientific classification | |
| Kingdom: | Plantae |
| Clade: | Tracheophytes |
| Clade: | Angiosperms |
| Clade: | Eudicots |
| Order: | Caryophyllales |
| Family: | Amaranthaceae |
| Subfamily: | Camphorosmoideae |
| Tribe: | Camphorosmeae |
| Genus: | Roycea C.A.Gardner[1][2] |
| Species | |
|
See text | |
Species
(listed by both Plants of the World online,[4] and FloraBase.)[5]
- Roycea divaricata Paul G.Wilson
- Roycea pycnophylloides C.A.Gardner
- Roycea spinescens C.A.Gardner
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_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?
gollark: And how do I get *that* to work.
References
- "Roycea". Australian Plant Name Index (APNI), IBIS database. Centre for Plant Biodiversity Research, Australian Government.
- Gardner, C.A. (1948). "Contributiones Florae Australiae Occidentalis, XII". Journal of the Royal Society of Western Australia. 32: 77, t. II.
- "Roycea". FloraBase. Western Australian Government Department of Parks and Wildlife.

- "Roycea C.A.Gardner | Plants of the World Online | Kew Science". Plants of the World Online. Retrieved 22 March 2020.
- "Roycea (genus & species) FloraBase—the Western Australian Flora". florabase.dpaw.wa.gov.au. Western Australian HerbariumBiodiversity and Conservation Science. Retrieved 22 March 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.
