Opened 17 years ago
Closed 17 years ago
#533 closed defect (fixed)
InnerPoint crashes in a cycle
Reported by: | Víctor de Buen Remiro | Owned by: | Liván Ramírez Dorta |
---|---|---|---|
Priority: | highest | Milestone: | |
Component: | Math | Version: | head |
Severity: | blocker | Keywords: | |
Cc: |
Description
InnerPoint crashes in this simple cycle
Set For(1,100,Real(Real k)
{
WriteLn("Iteration "<<k);
Matrix A.1 =
(
(-1, 0, 0, 0, 0),
(0, -1, 0, 0, 0),
(0.5, 0.5, -1, 0, 0),
(0.5, 0.5, 0, -1, 0),
(0.5, 0.5, 0, 0, -1),
(1, 0, 0, 0, 0),
(0, 1, 0, 0, 0),
(0, 0, 1, 0, 0),
(0, 0, 0, 1, 0),
(0, 0, 0, 0, 1)
);
Matrix a.1 = Col
(
-0.1,
-0.1,
0,
0,
0,
0.3,
0.3,
0.9,
0.9,
0.9
);
Set X.1 = InnerPoint(A.1,a.1);
k
});
Change History (2)
comment:1 Changed 17 years ago by
bug_file_loc: | → http://cvs.tol-project.org/viewcvs.cgi/tol_tests/tol/Bugzilla/bug_000533 |
---|
comment:2 Changed 17 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
A standard test has been added at
http://cvs.tol-project.org/viewcvs.cgi/tol_tests/tol/Bugzilla/bug_000533