Skip to content

Commit

Permalink
Fixing the function-call dependency issues described at #2, with no a…
Browse files Browse the repository at this point in the history
…lgebraic loops between Kernel and Tasks. Results checked for simple examples. More examples to be made compliant to the new implementation and checked.
  • Loading branch information
Matteo Morelli committed Aug 21, 2015
1 parent f6b2561 commit 41984cd
Show file tree
Hide file tree
Showing 12 changed files with 2,053 additions and 661 deletions.
Binary file modified simulink/blockset/tres_simulink_blockset.slx
Binary file not shown.
4 changes: 3 additions & 1 deletion simulink/build_tres_simulink.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@
MEX_OUT = '-outdir libs';
MEX_IN_CLL = {MEX_OUT, MEX_CFLAGS, ' -g ', MEX_INC, MEX_LIB};
MEX_IN_CMD = [sprintf('%s ',MEX_IN_CLL{1:end-1}), MEX_IN_CLL{end}];
MDL_SRC = {'src/node/tres_task.cpp', ...
MDL_SRC = {'src/common/tres_enabler_df.cpp', ...
'src/node/tres_task.cpp', ...
'src/node/tres_kernel.cpp', ...
'src/node/tres_task_df.cpp', ...
'src/network/tres_message_df.cpp', ...
'src/network/tres_network_df.cpp'};
if ~exist('libs','dir'),
Expand Down
Loading

0 comments on commit 41984cd

Please sign in to comment.