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

daisytuner / sdfglib / 15262928007

26 May 2025 10:36PM UTC coverage: 58.284% (-2.0%) from 60.304%
15262928007

push

github

web-flow
Merge pull request #36 from daisytuner/sdfg-validation

Introduces new definition of memlets plus sanity checks

104 of 266 new or added lines in 6 files covered. (39.1%)

241 existing lines in 15 files now uncovered.

7908 of 13568 relevant lines covered (58.28%)

96.1 hits per line

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

83.33
/src/data_flow/data_flow_node.cpp
1
#include "sdfg/data_flow/data_flow_node.h"
2

3
using json = nlohmann::json;
4

5
namespace sdfg {
6
namespace data_flow {
7

8
DataFlowNode::DataFlowNode(size_t element_id, const DebugInfo& debug_info,
921✔
9
                           const graph::Vertex vertex, DataFlowGraph& parent)
10
    : Element(element_id, debug_info), vertex_(vertex), parent_(&parent) {
921✔
11

12
      };
921✔
13

14
graph::Vertex DataFlowNode::vertex() const { return this->vertex_; };
4,264✔
15

UNCOV
16
const DataFlowGraph& DataFlowNode::get_parent() const { return *this->parent_; };
×
17

18
DataFlowGraph& DataFlowNode::get_parent() { return *this->parent_; };
13✔
19

20
}  // namespace data_flow
21
}  // 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