• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

daisytuner / sdfglib / 16069945621

04 Jul 2025 08:56AM UTC coverage: 64.375% (-0.2%) from 64.606%
16069945621

push

github

web-flow
Merge pull request #137 from daisytuner/clang-format

runs clang-format on codebase

609 of 827 new or added lines in 63 files covered. (73.64%)

46 existing lines in 30 files now uncovered.

8578 of 13325 relevant lines covered (64.38%)

177.24 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

70.0
/src/control_flow/state.cpp
1
#include "sdfg/control_flow/state.h"
2

3
namespace sdfg {
4
namespace control_flow {
5

6
State::State(size_t element_id, const DebugInfo& debug_info, const graph::Vertex vertex)
122✔
7
    : Element(element_id, debug_info), vertex_(vertex) {
61✔
8
    this->dataflow_ = std::make_unique<data_flow::DataFlowGraph>();
61✔
9
};
61✔
10

11
graph::Vertex State::vertex() const { return this->vertex_; };
144✔
12

13
const data_flow::DataFlowGraph& State::dataflow() const { return *this->dataflow_; };
15✔
14

15
data_flow::DataFlowGraph& State::dataflow() { return *this->dataflow_; };
21✔
16

NEW
17
void State::replace(const symbolic::Expression& old_expression, const symbolic::Expression& new_expression) {
×
UNCOV
18
    this->dataflow_->replace(old_expression, new_expression);
×
19
};
×
20

21
} // namespace control_flow
22
} // namespace sdfg
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc