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

daisytuner / docc / 23530813241

25 Mar 2026 07:59AM UTC coverage: 64.345% (+0.001%) from 64.344%
23530813241

Pull #610

github

web-flow
Merge d0b5ca446 into d8e714075
Pull Request #610: Introduce StdlibNode as base class for all Stdlib LibNodes.

7 of 12 new or added lines in 11 files covered. (58.33%)

1 existing line in 1 file now uncovered.

26716 of 41520 relevant lines covered (64.34%)

405.71 hits per line

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

50.0
/sdfg/src/data_flow/library_nodes/stdlib/stdlib_node.cpp
1
#include "sdfg/data_flow/library_nodes/stdlib/stdlib_node.h"
2

3
namespace sdfg::stdlib {
4

5
StdlibNode::StdlibNode(
6
    size_t element_id,
7
    const DebugInfo& debug_info,
8
    const graph::Vertex vertex,
9
    data_flow::DataFlowGraph& parent,
10
    const data_flow::LibraryNodeCode& code,
11
    const std::vector<std::string>& outputs,
12
    const std::vector<std::string>& inputs,
13
    const bool side_effect,
14
    const data_flow::ImplementationType& implementation_type
15
)
16
    : LibraryNode(element_id, debug_info, vertex, parent, code, outputs, inputs, side_effect, implementation_type) {}
56✔
17

NEW
18
symbolic::Expression StdlibNode::flop() const { return symbolic::zero(); }
×
19

20
} // namespace sdfg::stdlib
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