You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I use windows, c++ and visual studio. The tensor_eval function does not work for the taylor example. I could run it by changing the following lines (858-864) in the function definition in taylor.c:
Issue created by migration from Trac.
Original creator: chrschul
Original creation time: 2016-09-21 00:52:33
Assignee: @awalther1
Version: 2.0
Keywords: tensor bug
Hi,
I use windows, c++ and visual studio. The tensor_eval function does not work for the taylor example. I could run it by changing the following lines (858-864) in the function definition in taylor.c:
old:
free((char*) jm);
free((char*) X);
free((char) X);
free((char) X);
free((char) *Y);
free((char) Y);
free((char) Y);
new:
free((char*) jm);
//free((char*) X);
//free((char) X);
free((char) X);
//free((char) *Y);
//free((char) Y);
free((char) Y);
The text was updated successfully, but these errors were encountered: