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.
Source: see its full code online
Manual: FunctionsGraph API
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.FunctionsGraphLoading...
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.pumlLoading...