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

daisytuner / sdfglib / 15260078402

26 May 2025 06:30PM UTC coverage: 58.306% (-2.0%) from 60.304%
15260078402

Pull #36

github

web-flow
Merge 10e5b777b into ab802a762
Pull Request #36: Introduces new definition of memlets plus sanity checks

97 of 250 new or added lines in 6 files covered. (38.8%)

242 existing lines in 15 files now uncovered.

7901 of 13551 relevant lines covered (58.31%)

95.68 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