Skip to content

Commit

Permalink
added spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
AidenSwayne committed Nov 27, 2023
1 parent b946620 commit 05fd5fd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions linear_program.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,10 @@ def calculate(floors=1, xLength=1, yLength=1):
# no tree can be planted twice as much as any other tree
constraints.append(oakTreeAcres>=(1/2)*eucalyptusTreeAcres)
constraints.append(oakTreeAcres<=2*eucalyptusTreeAcres)

constraints.append(oakTreeAcres>=(1/2)*slashPineAcres)
constraints.append(oakTreeAcres<=2*slashPineAcres)

constraints.append(eucalyptusTreeAcres>=(1/2)*slashPineAcres)
constraints.append(eucalyptusTreeAcres<=2*slashPineAcres)

Expand Down

0 comments on commit 05fd5fd

Please sign in to comment.