removing debug code

time-shift
Michel Juillard 2014-06-16 14:24:05 +02:00
parent bfc01f9369
commit 6f9720ff84
1 changed files with 0 additions and 12 deletions

View File

@ -101,9 +101,6 @@ for i = 1:order+1
else
d1 = dynamic_model(z,innovation,params,steady_state,i+1);
end
if any(isnan(d1))
pause
end
res(:,i,1) = res(:,i,1)+weights(k)*d1(eq_index);
end
if nargout > 1
@ -130,9 +127,6 @@ for i = 1:order+1
else
d1 = dynamic_model(z,innovation,params,steady_state,i+1);
end
if any(isnan(d1))
pause
end
res(:,i,j) = d1(eq_index);
if nargout > 1
i_cols_Af = i_cols_Af + ny;
@ -155,9 +149,6 @@ for i = 1:order+1
else
d1 = dynamic_model(z,innovation,params,steady_state,i+1);
end
if any(isnan(d1))
pause
end
res(:,i,j) = d1(eq_index);
end
i_rows = i_rows + ny;
@ -191,9 +182,6 @@ for j=1:world_nbr
d1 = dynamic_model(Y(i_rows_y,j),x,params, ...
steady_state,i+1);
end
if any(isnan(d1))
pause
end
res(:,i,j) = d1(eq_index);
i_rows_y = i_rows_y + ny;
offset_c = offset_c + world_nbr*ny;