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

daisytuner / sdfglib / 13825247958

13 Mar 2025 01:47AM UTC coverage: 61.656%. First build
13825247958

push

github

web-flow
Merge pull request #1 from daisytuner/initial

Adds the initial version

7601 of 12328 new or added lines in 110 files covered. (61.66%)

7601 of 12328 relevant lines covered (61.66%)

533.1 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)
67✔
7
    : Element(element_id, debug_info), vertex_(vertex) {
67✔
8
    this->dataflow_ =
9
        std::unique_ptr<data_flow::DataFlowGraph>(new data_flow::DataFlowGraph(*this));
67✔
10
};
67✔
11

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

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

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

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

23
}  // namespace control_flow
24
}  // 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

© 2026 Coveralls, Inc