Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Fiatlight Documentation

FunctionsGraph

FunctionsGraph is one of the core classes of FiatLight: it represents a graph of functions, where the output of one function can be linked to the input of another function.

Signature

Below, you will find the “signature” of the FunctionsGraph class, with its main attributes and methods (but not their bodies)

Its full source code is available online.

from fiatlight.fiat_notebook import look_at_code
%look_at_class_header fiatlight.fiat_core.FunctionsGraph
Loading...

Architecture

Below is a PlantUML diagram showing the architecture of the fiat_core module. See the architecture page for the full architecture diagrams.

from fiatlight.fiat_notebook import plantuml_magic
%plantuml_include class_diagrams/fiat_core.puml
Loading...