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

daisytuner / sdfglib / 15656007340

14 Jun 2025 08:51PM UTC coverage: 13.234% (-49.9%) from 63.144%
15656007340

Pull #76

github

web-flow
Merge 9586c8161 into 413c53212
Pull Request #76: New Loop Dependency Analysis

361 of 465 new or added lines in 7 files covered. (77.63%)

6215 existing lines in 110 files now uncovered.

1612 of 12181 relevant lines covered (13.23%)

13.64 hits per line

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

0.0
/src/structured_control_flow/while.cpp
1
#include "sdfg/structured_control_flow/while.h"
2

3
namespace sdfg {
4
namespace structured_control_flow {
5

UNCOV
6
While::While(const DebugInfo& debug_info) : ControlFlowNode(debug_info) {
×
UNCOV
7
    this->root_ = std::unique_ptr<Sequence>(new Sequence(debug_info));
×
UNCOV
8
};
×
9

UNCOV
10
const Sequence& While::root() const { return *this->root_; };
×
11

UNCOV
12
Sequence& While::root() { return *this->root_; };
×
13

14
void While::replace(const symbolic::Expression& old_expression,
×
15
                    const symbolic::Expression& new_expression) {
16
    this->root_->replace(old_expression, new_expression);
×
17
};
×
18

UNCOV
19
Break::Break(const DebugInfo& debug_info)
×
UNCOV
20
    : ControlFlowNode(debug_info) {
×
21

UNCOV
22
      };
×
23

24
void Break::replace(const symbolic::Expression& old_expression,
×
25
                    const symbolic::Expression& new_expression) {
26

27
};
×
28

UNCOV
29
Continue::Continue(const DebugInfo& debug_info)
×
UNCOV
30
    : ControlFlowNode(debug_info) {
×
31

UNCOV
32
      };
×
33

34
void Continue::replace(const symbolic::Expression& old_expression,
×
35
                       const symbolic::Expression& new_expression) {
36

37
};
×
38

39
}  // namespace structured_control_flow
40
}  // 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