Skip to content

Commit 492129e

Browse files
Minor changes in help functions.
1 parent 8b9b8b6 commit 492129e

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

src/helpFunctions.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include "helpFunctions.hpp"
2525

2626
/*-----------------------------------------------------------*/
27-
/* display best known values */
27+
/* display best known values (valid for version 1) */
2828
/*-----------------------------------------------------------*/
2929
void display_best_solutions ( std::ostream & out ) {
3030
out << "\tSOLAR1 \t-902,503.692418" << std::endl
@@ -128,10 +128,11 @@ void display_help ( std::ostream & out , const std::vector<Problem> & problems )
128128
display_problems ( out , problems );
129129

130130
out << std::endl
131-
<< "Best known values for single-objective instances (one replication, full fidelity, default seed of zero):"
131+
<< "Best known values for single-objective instances, with one replication, full fidelity, and default seed of zero:"
132132
<< std::endl << std::endl;
133133
display_best_solutions ( out );
134-
out << std::endl;
134+
out << std::endl << "\t--> These values are valid only for SOLAR version 1"
135+
<< std::endl << std::endl;
135136
}
136137

137138
/*-----------------------------------------------------------*/

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* SOLAR - The solar thermal power plant simulator - version 1.0 */
33
/* https://github.com/bbopt/solar */
44
/* */
5-
/* 2024-05-24 */
5+
/* 2024-05-27 */
66
/* */
77
/* Miguel Diago, Sebastien Le Digabel, Mathieu Lemyre-Garneau, Bastien Talgorn */
88
/* */
@@ -41,7 +41,7 @@
4141
#include "sampling.hpp"
4242

4343
// version:
44-
const std::string VERSION = "1.0, 2024-05-24";
44+
const std::string VERSION = "1.0, 2024-05-27";
4545

4646
// validation functions:
4747
bool check ( bool fast );

0 commit comments

Comments
 (0)