Skip to content

Instantly share code, notes, and snippets.

@passcod
Created June 25, 2012 06:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save passcod/2987073 to your computer and use it in GitHub Desktop.
Save passcod/2987073 to your computer and use it in GitHub Desktop.
UoA reqs graph
digraph uoareqs {
/* CompSci */
CS101 -> CS105;
CS101 -> CS210;
CS101 -> CS220;
CS101 -> CS225;
CS101 -> CS230;
CS101 -> CS280;
CS101 -> MAT270;
CS101 [color=green];
CS105 -> CS210;
CS105 -> CS215;
CS105 -> CS220;
CS105 -> CS230;
CS105 -> CS280;
CS105 [color=blue];
CS210 -> CS215;
CS210 -> CS313;
CS210 -> CS314;
CS210 -> CS373;
CS215 -> CS313;
CS215 -> CS340;
CS220 -> CS320;
CS220 -> CS350;
CS220 -> CS351;
CS220 -> CS367;
CS220 -> CS369;
CS225 -> CS320;
CS225 -> CS350;
CS225 -> CS351;
CS225 -> CS367;
CS225 [color=blue];
CS230 -> CS335;
CS230 -> CS340;
CS230 -> CS345;
CS230 -> CS373;
/* CS PostGrad */
CS345 -> CS705;
CS335 -> CS711;
CS373 -> CS715;
CS320 -> CS720;
MAT260 -> CS720;
CS335 -> CS732;
CS335 -> CS734;
CS314 -> CS742;
CS320 -> CS750 [color=violet];
CS350 -> CS750 [color=violet];
CS220 -> CS751;
CS225 -> CS751;
CS367 -> CS760;
CS220 -> CS761;
CS225 -> CS761;
CS367 -> CS767;
CS210 -> CS771;
CS230 -> CS771;
CS373 -> CS773;
CS373 -> CS775;
MAT208 -> CS775 [style=dashed];
MAT250 -> CS775;
CS340 -> CS775 [style=dashed];
/* Maths */
MAT150 -> CS225;
MAT150 -> MAT208;
MAT150 -> MAT250;
MAT150 -> MAT269;
MAT150 -> MAT270;
MAT150 [color=blue];
MAT208 -> MAT253;
MAT208 -> MAT260;
MAT250 -> MAT253;
MAT250 -> MAT255;
MAT250 -> MAT326;
MAT253 -> MAT332;
MAT253 -> MAT340;
MAT253 -> MAT361;
MAT253 -> MAT362;
MAT255 -> MAT315;
MAT255 -> MAT320;
MAT255 -> MAT326;
MAT255 -> MAT328;
MAT255 -> MAT332;
MAT260 -> MAT332;
MAT260 -> MAT361;
MAT260 -> MAT362;
MAT260 -> MAT363;
MAT270 -> MAT363;
/* 260 can (and is recomended to) be done along 250 */
MAT250 -> MAT260 [color=green];
MAT332 -> MAT333;
/* Physics */
PHYS102 -> PHYS120 [style=dashed];
PHYS102 -> PHYS150 [style=dashed];
PHYS102 [color=blue];
PHYS120 -> PHYS211 [style=dashed];
PHYS120 -> PHYS231 [style=dashed];
PHYS120 -> PHYS251 [style=dashed];
PHYS120 -> PHYS261 [style=dashed];
PHYS150 -> PHYS213 [style=dashed];
PHYS150 -> PHYS240 [style=dashed];
PHYS150 -> PHYS251 [style=dashed];
PHYS150 -> PHYS261 [style=dashed];
PHYS211 -> PHYS315;
PHYS211 -> PHYS325;
PHYS211 -> PHYS326;
PHYS211 -> PHYS330;
PHYS211 -> PHYS331;
PHYS211 -> PHYS340;
PHYS211 -> PHYS350;
PHYS211 -> PHYS355;
PHYS231 -> PHYS315;
}
@passcod
Copy link
Author

passcod commented Jun 25, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment