Last active
August 29, 2015 14:21
-
-
Save hiro88hyo/2b425bf15333ff1a00b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* bin\dot.exe -Tpng:cairo:gd alchemy.dot -o alchemy.png */ | |
digraph alchemy { | |
graph [rankdir = LR, fontsize = 9.0]; | |
/* air | |
airplane | |
algae | |
alien | |
allergy | |
angel | |
aquarium | |
armor | |
ash | |
astronaut | |
atmosphere | |
atomic bomb | |
axe | |
bacteria | |
bank | |
bayonet | |
beach | |
bicycle | |
bird | |
blade | |
blender | |
blood | |
boat | |
boiler | |
bone | |
book | |
brick | |
bridge | |
bullet | |
campfire | |
car | |
city | |
cloud | |
coal | |
constellation | |
corpse | |
day | |
dessert | |
diamond | |
double rainbow | |
dust | |
earth | |
earthquake | |
egg | |
electricity | |
energy | |
engineer | |
eruption | |
explosion | |
fire | |
fish | |
glass | |
gold | |
gun | |
gunpoweder | |
hard roe | |
house | |
human | |
life | |
metal | |
moon | |
moss | |
mountain | |
mud | |
ocean | |
paper | |
plant | |
pressure | |
rain | |
rainbow | |
river | |
sand | |
sea | |
sky | |
star | |
steam | |
steel | |
stone | |
sun | |
swamp | |
sword | |
tool | |
village | |
volcano | |
water | |
wall | |
wave | |
wheel | |
wind | |
wood | |
*/ | |
air -> atmosphere; | |
air -> bird; | |
air -> cloud; | |
air -> dust; | |
air -> energy; | |
air -> pressure; | |
air -> rain; | |
air -> sand; | |
air -> sky; | |
air -> stone; | |
air -> wind; | |
algae -> moss; | |
bird -> airplane; | |
bird -> angel; | |
bird -> egg; | |
blade -> axe; | |
blade -> bayonet; | |
blade -> blender; | |
blade -> blood; | |
blade -> sword; | |
brick -> house; | |
brick -> wall; | |
bullet -> gun; | |
cloud -> rain; | |
cloud -> sky; | |
coal -> diamond; | |
coal -> steel; | |
corpse -> bone; | |
dust -> allergy; | |
dust -> gunpowder; | |
earth -> dust; | |
earth -> earthquake; | |
earth -> human; | |
earth -> lava; | |
earth -> mountain; | |
earth -> mud; | |
earth -> plant; | |
earth -> pressure; | |
earth -> volcano; | |
earthquake -> mountain; | |
egg -> "hard roe"; | |
electricity -> glass; | |
energy -> "atomic bomb"; | |
energy -> ash; | |
energy -> earthquake; | |
energy -> electricity; | |
energy -> eruption; | |
energy -> life; | |
energy -> steam; | |
energy -> wind; | |
explosion -> "atomic bomb"; | |
fire -> brick; | |
fire -> campfire; | |
fire -> energy; | |
fire -> explosion; | |
fire -> glass; | |
fire -> gunpowder; | |
fire -> lava; | |
fire -> metal; | |
fire -> rain; | |
fire -> steam; | |
fire -> sun; | |
fire -> volcano; | |
fish -> aquarium; | |
glass -> aquarium; | |
glass -> blender; | |
glass -> time; | |
gold -> bank; | |
gun -> bayonet; | |
gun -> corpse; | |
gunpowder -> bullet; | |
gunpowder -> explosion; | |
"hard roe" -> fish; | |
house -> bank; | |
house -> village; | |
human -> allergy; | |
human -> angel; | |
human -> astronaut; | |
human -> blood; | |
human -> corpse; | |
human -> engineer; | |
human -> tool; | |
lava -> stone; | |
lava -> volcano; | |
life -> alien; | |
life -> bacteria; | |
life -> bird; | |
life -> human; | |
metal -> airplane; | |
metal -> armor; | |
metal -> blade; | |
metal -> boiler; | |
metal -> bullet; | |
metal -> car; | |
metal -> electricity; | |
metal -> gold; | |
metal -> gun; | |
metal -> steel; | |
metal -> sword; | |
metal -> tool; | |
moon -> astronaut; | |
moon -> night; | |
moon -> space; | |
mountain -> river; | |
mountain -> volcano; | |
mud -> brick; | |
mud -> swamp; | |
night -> star; | |
ocean -> algae; | |
ocean -> wave; | |
paper -> book; | |
plant -> algae; | |
plant -> coal; | |
plant -> energy; | |
plant -> swamp; | |
plant -> tree; | |
pressure -> atmosphere; | |
pressure -> coal; | |
pressure -> diamond; | |
pressure -> paper; | |
pressure -> wind; | |
rain -> plant; | |
rain -> rainbow; | |
rain -> river; | |
rainbow -> "double rainbow"; | |
rainbow -> gold; | |
river -> bridge; | |
sand -> beach; | |
sand -> dessert; | |
sand -> glass; | |
sand -> time; | |
sea -> beach; | |
sea -> ocean; | |
sea -> wave; | |
sky -> atmosphere; | |
sky -> atmosphere; | |
sky -> bird; | |
sky -> day; | |
sky -> moon; | |
sky -> night; | |
sky -> star; | |
sky -> sun; | |
space -> alien; | |
space -> astronaut; | |
star -> constellation; | |
star -> space; | |
steam -> boiler; | |
steam -> cloud; | |
steel -> armor; | |
stone -> blade; | |
stone -> metal; | |
stone -> moon; | |
stone -> moss; | |
stone -> sand; | |
sun -> brick; | |
sun -> day; | |
sun -> energy; | |
sun -> gold; | |
sun -> rainbow; | |
sun -> space; | |
swamp -> bacteria; | |
swamp -> life; | |
sword -> bayonet; | |
time -> bone; | |
time -> fish; | |
time -> tree; | |
tool -> armor; | |
tool -> engineer; | |
tool -> house; | |
tool -> wheel; | |
tool -> wood; | |
tree -> wood; | |
village -> city; | |
volcano -> ash; | |
volcano -> eruption; | |
wall -> house; | |
water -> "hard roe"; | |
water -> algae; | |
water -> aquarium; | |
water -> boat; | |
water -> mud; | |
water -> ocean; | |
water -> rain; | |
water -> river; | |
water -> sea; | |
water -> steam; | |
wave -> earthquake; | |
wheel -> bicycle; | |
wheel -> car; | |
wind -> wave; | |
wood -> axe; | |
wood -> boat; | |
wood -> book; | |
wood -> bridge; | |
wood -> campfire; | |
wood -> paper; | |
wood -> wheel; | |
{rank = same; air; water; fire; earth} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment