Skip to content

Commit 7070a51

Browse files
committed
clang
1 parent 2b58e1f commit 7070a51

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/model/Model.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ std::string Model::get_block_name(int block_id) const {
115115
int Model::add_node(const std::vector<Block *> &inlet_eles,
116116
const std::vector<Block *> &outlet_eles,
117117
const std::string_view &name) {
118-
DEBUG_MSG("Adding node " << name);
118+
// DEBUG_MSG("Adding node " << name);
119119
auto node = std::shared_ptr<Node>(
120120
new Node(node_count, inlet_eles, outlet_eles, this));
121121
nodes.push_back(node);

src/model/OpenLoopCoronaryBC.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
* Parameter sequence for constructing this block
7474
*
7575
* * `0` Ra: Small artery resistance
76-
* * `1` Ram: Microvascualr resistance
76+
* * `1` Ram: Microvascualar resistance
7777
* * `2` Rv: Venous resistance
7878
* * `3` Ca: Small artery capacitance
7979
* * `4` Cim: Intramyocardial capacitance

src/solve/SimulationParameters.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,9 @@ void create_external_coupling(
409409
"Error: The specified connection type for outlet "
410410
"external_coupling_block is invalid.");
411411
}
412-
// Add connection only for closedLoopRCR and BloodVessel. Connection to
413-
// ClosedLoopHeartAndPulmonary will be
414-
// handled in ClosedLoopHeartAndPulmonary creation.
412+
// Add connection only for closedLoopRCR and BloodVessel. Connection to
413+
// ClosedLoopHeartAndPulmonary will be handled in
414+
// ClosedLoopHeartAndPulmonary creation.
415415
if ((connected_type == "ClosedLoopRCR") ||
416416
(connected_type == "BloodVessel")) {
417417
connections.push_back({connected_block, coupling_name});

0 commit comments

Comments
 (0)