Skip to content
Snippets Groups Projects
Verified Commit b73f5b78 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Compatibility fix for Octave 5

The sleep() function has been removed in favor of pause().
parent 5994321c
No related branches found
No related tags found
No related merge requests found
## Copyright (C) 2009-2017 Dynare Team
## Copyright (C) 2009-2019 Dynare Team
##
## This file is part of Dynare.
##
......@@ -56,7 +56,7 @@ for blockFlag = 0:1
stack_solve_algos = 0:5;
endif
sleep(1) # Workaround for strange race condition related to the _static.m file
pause(1) # Workaround for strange race condition related to the _static.m file
for i = 1:length(solve_algos)
num_block_tests = num_block_tests + 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment