ecoli_node_bypass - Man Page

Name

ecoli_node_bypass — Bypass node

— A pass-through node useful for building graph loops.  

Synopsis

Functions

struct ec_node * ec_node_bypass (const char *id, struct ec_node *node)
int ec_node_bypass_set_child (struct ec_node *gen_node, struct ec_node *child)

Detailed Description

A pass-through node useful for building graph loops.

Configuration Schema

schema bypass {
    node child  {
        description "The child node.";
    }
}

Function Documentation

struct ec_node * ec_node_bypass (const char * id, struct ec_node * node)

A node that does nothing other than calling the child node. It can be helpful to build loops in a node graph.

int ec_node_bypass_set_child (struct ec_node * gen_node, struct ec_node * child)

Attach a child to a bypass node.

Author

Generated automatically by Doxygen for Libecoli from the source code.

Referenced By

The man pages ec_node_bypass(3) and ec_node_bypass_set_child(3) are aliases of ecoli_node_bypass(3).

Version 0.11.3 Libecoli