Antares Simulator
Power System Simulator
variables-bounds-consistency.h
1 /*
2  * Copyright 2007-2025, RTE (https://www.rte-france.com)
3  * See AUTHORS.txt
4  * SPDX-License-Identifier: MPL-2.0
5  * This file is part of Antares-Simulator,
6  * Adequacy and Performance assessment for interconnected energy networks.
7  *
8  * Antares_Simulator is free software: you can redistribute it and/or modify
9  * it under the terms of the Mozilla Public Licence 2.0 as published by
10  * the Mozilla Foundation, either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * Antares_Simulator is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * Mozilla Public Licence 2.0 for more details.
17  *
18  * You should have received a copy of the Mozilla Public Licence 2.0
19  * along with Antares_Simulator. If not, see <https://opensource.org/license/mpl-2-0/>.
20  */
21 #pragma once
22 
23 #include <vector>
24 
25 #include "unfeasibility-analysis.h"
26 
27 namespace Antares::Optimization
28 {
29 
31 {
32  VariableBounds(const std::string& var_name, double low_bound, double up_bound):
33  name(var_name),
34  lowBound(low_bound),
35  upBound(up_bound)
36  {
37  }
38 
39  std::string name;
40  double lowBound;
41  double upBound;
42 };
43 
49 {
50 public:
51  VariablesBoundsConsistency() = default;
52  ~VariablesBoundsConsistency() override = default;
53 
54  void run(operations_research::MPSolver* problem) override;
55  void printReport() const override;
56 
57  std::string title() const override
58  {
59  return "Variables bounds consistency check";
60  }
61 
62  const std::vector<VariableBounds>& incorrectVars() const
63  {
64  return incorrectVars_;
65  }
66 
67 private:
68  void storeIncorrectVariable(std::string name, double lowBound, double upBound);
69  bool foundIncorrectVariables();
70 
71  std::vector<VariableBounds> incorrectVars_;
72 };
73 } // namespace Antares::Optimization
Definition: unfeasibility-analysis.h:37
Definition: variables-bounds-consistency.h:49
Definition: variables-bounds-consistency.h:31