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

daisytuner / sdfglib / 15049376628

15 May 2025 03:33PM UTC coverage: 62.241% (+4.7%) from 57.525%
15049376628

Pull #9

github

web-flow
Merge b96e33e0e into 9d3b1a2b3
Pull Request #9: Graphviz DOT Visualizer for SDFGs

520 of 542 new or added lines in 3 files covered. (95.94%)

782 existing lines in 68 files now uncovered.

8049 of 12932 relevant lines covered (62.24%)

506.14 hits per line

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

92.86
/src/data_flow/library_node.cpp
1
#include "sdfg/data_flow/library_node.h"
2

3
#include "sdfg/symbolic/symbolic.h"
4

5
namespace sdfg {
6
namespace data_flow {
7

8
LibraryNode::LibraryNode(size_t element_id, const DebugInfo& debug_info,
13✔
9
                         const graph::Vertex& vertex, DataFlowGraph& parent,
10
                         const std::vector<std::pair<std::string, sdfg::types::Scalar>>& outputs,
11
                         const std::vector<std::pair<std::string, sdfg::types::Scalar>>& inputs,
12
                         const LibraryNodeType& call, const bool side_effect)
13
    : CodeNode(element_id, debug_info, vertex, parent, outputs, inputs),
13✔
14
      call_(call),
13✔
15
      side_effect_(side_effect) {
26✔
16

17
      };
13✔
18

19
const LibraryNodeType& LibraryNode::call() const { return this->call_; };
6✔
20

21
const bool LibraryNode::has_side_effect() const { return this->side_effect_; };
2✔
22

23
std::unique_ptr<DataFlowNode> LibraryNode::clone(const graph::Vertex& vertex,
1✔
24
                                                 DataFlowGraph& parent) const {
25
    return std::unique_ptr<LibraryNode>(
1✔
26
        new LibraryNode(this->element_id_, this->debug_info_, vertex, parent, this->outputs_,
2✔
27
                        this->inputs_, this->call_, this->side_effect_));
1✔
UNCOV
28
};
×
29

30
void LibraryNode::replace(const symbolic::Expression& old_expression,
1✔
31
                          const symbolic::Expression& new_expression) {};
1✔
32

33
}  // namespace data_flow
34
}  // 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