algo_1: algo_1 (R6 class)

Description Usage Arguments Format Value Graph Examples

Description

The 1 constant algorithm.
Viewed from another perspective: the algorithm whose truth table is: 1.

Usage

1

Arguments

algo_id

A technical unique identifier for the algorithmic node. If missing, a GUID will be created. (character)

label

A meaningful label for the algorithmic node. Keep it short to let it display properly on graph plots. Default: "NAND". (character)

...

For future usage.

Format

An object of class R6ClassGenerator of length 24.

Value

An object instance of class algo_1:algo_composite:algo_base.

Graph

Graph of the algorithm

Examples

1
2
3
4
5
6
a <- algo_1$new();
a$plot();
a$exec();
a$exec(input = "");
a$exec(input = c(FALSE));
a$exec(input = bnum$new(dim=0));

daviddoret/haricot documentation built on May 21, 2019, 1:42 a.m.