Skip to content

Commit 1b5e5fe

Browse files
committed
Small changes to docstrings
1 parent 8208998 commit 1b5e5fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/simulation/investment.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ fn select_best_assets(
367367
) -> Result<Vec<AssetRef>> {
368368
let objective_type = &agent.objectives[&year];
369369

370-
// Pre-compute coefficients for all asset options according to the agent's objective
370+
// Calculate coefficients for all asset options according to the agent's objective
371371
let coefficients =
372372
calculate_coefficients_for_assets(model, objective_type, &opt_assets, reduced_costs);
373373

src/simulation/investment/appraisal/coefficients.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub struct ObjectiveCoefficients {
2323
pub unmet_demand_coefficient: MoneyPerFlow,
2424
}
2525

26-
/// Calculates cost coefficients for all assets for a given objective type.
26+
/// Calculates cost coefficients for a set of assets for a given objective type.
2727
pub fn calculate_coefficients_for_assets(
2828
model: &Model,
2929
objective_type: &ObjectiveType,

0 commit comments

Comments
 (0)