Skip to content

Commit

Permalink
update cases
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamSwayne committed Nov 26, 2023
1 parent ea202fd commit 3fa1bac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linear_program.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def calculate(floors=1, xLength=1, yLength=1):
logs.append("cost (measured in USD):")
logs.append(cost.value)
logs.append("\ncolumns (measured in quantity):")
logs.append("Wood columns:\n"+str(woodColumns.value))
logs.append("Steel columns:\n"+str(steelColumns.value))
logs.append("Wood columns:\n"+str(cp.sum(woodColumns.value)))
logs.append("Steel columns:\n"+str(cp.sum(steelColumns.value)))
logs.append("\ncarbon offsets (measured in acres):")
logs.append(slashPineAcres.value)

Expand Down

0 comments on commit 3fa1bac

Please sign in to comment.