Skip to content

Commit

Permalink
remove "Aux" from folder and file names
Browse files Browse the repository at this point in the history
  • Loading branch information
Milos-RTEi committed Oct 4, 2024
1 parent 41b6f16 commit a506037
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/solver/simulation/solver.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#include "../ts-generator/generator.h"
#include "opt_time_writer.h"
#include "../hydro/management.h" // Added for use of randomReservoirLevel(...)
#include "../ts-generator/optimized-thermal-generator/auxillary/pre-scenario-builder.h"
#include "../ts-generator/optimized-thermal-generator/support/pre-scenario-builder.h"

#include <yuni/core/system/suspend.h>
#include <yuni/job/job.h>
Expand Down
12 changes: 6 additions & 6 deletions src/solver/ts-generator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ source_group("ts-generator\\Randomized-thermal-generator" FILES ${SRC_RANDOMIZED
# Optimized-thermal-ts-generator
#
set(SRC_OPTIMIZEDGENERATORS
optimized-thermal-generator/auxillary/AuxillaryStructures.h
optimized-thermal-generator/auxillary/AuxillaryStructures.cpp
optimized-thermal-generator/auxillary/AuxFreeFun.h
optimized-thermal-generator/auxillary/AuxFreeFun.cpp
optimized-thermal-generator/auxillary/pre-scenario-builder.h
optimized-thermal-generator/auxillary/pre-scenario-builder.cpp
optimized-thermal-generator/support/SupportStructures.h
optimized-thermal-generator/support/SupportStructures.cpp
optimized-thermal-generator/support/SupportFunctions.h
optimized-thermal-generator/support/SupportFunctions.cpp
optimized-thermal-generator/support/pre-scenario-builder.h
optimized-thermal-generator/support/pre-scenario-builder.cpp
optimized-thermal-generator/main/OptimizedGenerator.h
optimized-thermal-generator/main/OptimizedGenerator.cpp
optimized-thermal-generator/parameters/OptimizationParameters.h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#include "ortools/linear_solver/linear_solver.h"
#include "../../randomized-thermal-generator/RandomizedGenerator.h"
#include "../../../../libs/antares/study/maintenance_planning/MaintenanceGroup.h"
#include "../auxillary/AuxillaryStructures.h"
#include "../auxillary/AuxFreeFun.h"
#include "../support/SupportStructures.h"
#include "../support/SupportFunctions.h"
#include "../parameters/OptimizationParameters.h"
#include <antares/exception/AssertionError.hpp>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <numeric>
#include <algorithm>
#include "../main/OptimizedGenerator.h"
#include "../auxillary/AuxFreeFun.h"
#include "../support/SupportFunctions.h"

namespace Antares::Solver::TSGenerator
{
Expand Down Expand Up @@ -79,7 +79,7 @@ std::array<double, HOURS_PER_YEAR> calculateAverageRenewableTs(
}
}

// auxillary functions - for parameter calculations
// support functions - for parameter calculations
std::array<double, DAYS_PER_YEAR> calculateDailySums(
const std::array<double, HOURS_PER_YEAR>& hourlyValues)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace Antares::Solver::TSGenerator
{

// auxillary functions
// support functions
std::array<double, DAYS_PER_YEAR> calculateDailySums(
const std::array<double, HOURS_PER_YEAR>& hourlyValues);
std::array<double, HOURS_PER_YEAR> calculateAverageTs(const Matrix<double>& tsValue,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Created by milos on 14/11/23.
//

#include "AuxillaryStructures.h"
#include "SupportStructures.h"

namespace Antares::Solver::TSGenerator
{
Expand Down

0 comments on commit a506037

Please sign in to comment.