Skip to content

Commit 1a1473f

Browse files
Update codegen_cli_main.cpp
1 parent d8ec63a commit 1a1473f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

exe/codegen_cli_main.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ along with LB-LMC Solver C++ Code Generation Library. If not, see <https://www.
3939
#define TOSTRING(x) STRINGFY(x)
4040

4141
const static std::string PROGRAM_TITLE =
42-
"ORTiS Solver C++ Code Generator";
42+
"ORTiS Circuit Solver C++ Code Generator";
4343

4444
const static std::string PROGRAM_VERSION =
4545
"Built: " __DATE__ " " __TIME__
4646
;
4747

4848
const static std::string COPYRIGHT =
49-
"Copyright (c) 2019-2020 Matthew Milton and others";
49+
"Copyright (c) 2019-2021 Matthew Milton and others";
5050

5151
const static std::string PROGRAM_DESCRIPTION =
5252
R"(
@@ -105,9 +105,9 @@ Resistor res (R) {2, 0}
105105
const static std::string ABOUT_TEXT =
106106
R"(
107107
108-
This tool generates C++ source code for solvers of multi-physics networked systems such as
108+
This tool generates C++ source code for solvers of multi-physics circuit systems such as
109109
electrical, power electronic, and energy conversion systems. These systems are defined with a
110-
netlist file which is input to this tool. The solver algorithm used is the
110+
netlist file which is input to this tool. The algorithm used in generated solvers is the
111111
Latency-Based Linear Multi-step Compound (LB-LMC) method.
112112
113113
ORTiS Solver C++ Code Generator uses Eigen 3 Linear Algebra C++ Template Library
@@ -116,9 +116,9 @@ ORTiS Solver C++ Code Generator uses Eigen 3 Linear Algebra C++ Template Library
116116
Acknowledgements:
117117
118118
Matthew Milton -- ORTiS Code Generation Library and Tool Creator, Lead Developer and Director
119-
Michele Difronzo -- Component Model Developer, Software Tester, Feature Requester
120-
Mark Vygoder -- Component Model Developer, Software Tester, Feature Requester
119+
Michele Difronzo -- Component Model Developer
121120
Dhiman Chowdhury -- Component Model Developer
121+
Mark Vygoder -- Component Model Developer
122122
Andrea Benigni -- Original LB-LMC Solver Algorithm Creator
123123
124124
)";

0 commit comments

Comments
 (0)