Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • stepan-a/benchmark-eagle
1 result
Show changes
Commits on Source (2)
@#if !BLOCKS && !BYTECODE && !USE_DLL
@#if !BLOCKS && !BYTECODE && !USE_DLL // -> MATLAB
model;
@#elseif BLOCKS && !BYTECODE && !USE_DLL
@#elseif BLOCKS && !BYTECODE && !USE_DLL // -> MATLAB WITH BLOCKS
model(block, cutoff=@{CUTOFF_VALUE}, mfs=@{MFS_VALUE}, static_mfs=@{STATIC_MFS_VALUE});
@#elseif !BLOCKS && BYTECODE
@#elseif !BLOCKS && BYTECODE && !USE_DLL // -> BYTECODE
model(bytecode);
@#elseif BLOCKS && BYTECODE
@#elseif BLOCKS && BYTECODE && !USE_DLL // -> BYTECODE WITH BLOCKS
model(block, bytecode, cutoff=@{CUTOFF_VALUE}, mfs=@{MFS_VALUE}, static_mfs=@{STATIC_MFS_VALUE});
@#elseif !BLOCKS && USE_DLL
@#elseif !BLOCKS && !BYTECODE && USE_DLL // -> USE_DLL
model(use_dll);
@#else
@#else // USE_DLL WITH BLOCKS
model(block, use_dll, cutoff=@{CUTOFF_VALUE}, mfs=@{MFS_VALUE}, static_mfs=@{STATIC_MFS_VALUE});
@#endif
......
@#define steady = 0
@#ifndef BLOCKS
@#define BLOCKS=true
@#define BLOCKS=false
@#endif
@#ifndef BYTECODE
@#define BYTECODE=true
@#define BYTECODE=false
@#endif
@#ifndef USE_DLL
@#define USE_DLL=false
@#define USE_DLL=true
@#endif
@#ifndef MFS_VALUE
......
@#define steady = 0
@#ifndef BLOCKS
@#define BLOCKS=true
@#define BLOCKS=false
@#endif
@#ifndef BYTECODE
@#define BYTECODE=true
@#define BYTECODE=false
@#endif
@#ifndef USE_DLL
@#define USE_DLL=false
@#define USE_DLL=true
@#endif
@#ifndef MFS_VALUE
......