In this folder you find the examples of adipose and muscle tissue for the computations of Section 4: Performance optimization.
All examples are compiled with the compiler flags "-std=c++1y -O3 -DNDEBUG"

Subfolders:

  - Reference:      Computation of the examples with FunG
  - Caching:        Computation of the examples without caching
  - EliminateZeros: Computation of the examples without elimination of functions that always return 0
  - CompilerFlags:  Computation of the examples with additional compiler flags "--param max-inline-insns-auto=5000 --param early-inlining-insns=3000 --param inline-unit-growth=100"
 
 
In each of the subfolders the corresponding examples can be compiled and run with the following command:

mkdir build && cd build && cmake .. && make && ./runTest
 
