Skip to content

Commit

Permalink
Adding figures
Browse files Browse the repository at this point in the history
  • Loading branch information
heileman committed Jan 9, 2019
1 parent 6441562 commit bd9f149
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/src/BW-plan.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using CurricularAnalytics

A = Course("Introduction to Baskets", 3)
B = Course("Introduction to Baskets Lab", 1)
C = Course("Basic Basket Forms", 3)
D = Course("Advanced Basketry", 3)

add_requisite!(A, B, strict_co)
add_requisite!(A, C, pre)
add_requisite!(C, D, co)

curric = Curriculum("Basket Weaving", [A,B,C,D])

terms = Array{Term}(undef, 2)
terms[1] = Term([A,B])
terms[2] = Term([C,D])

dp = DegreePlan("2-Term Plan", curric, terms)
Binary file added docs/src/blocking-ex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/src/centrality-ex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/src/complexity-ex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/src/delay-ex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bd9f149

Please sign in to comment.