Subversion Repositories gelsvn

Rev

Rev 342 | Rev 366 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 342 Rev 351
Line 7... Line 7...
7
#include "Mat3x3d.h"
7
#include "Mat3x3d.h"
8
#include "Mat4x4d.h"
8
#include "Mat4x4d.h"
9
 
9
 
10
#include <iostream>
10
#include <iostream>
11
 
11
 
12
using namespace std;
12
using namespace std; 
13
 
13
 
14
 
14
 
15
namespace
15
namespace
16
{
16
{
17
		// During experiments 925 iterations were observed for a hard problem
-
 
18
		// Ten times that should be safe.
-
 
19
		const unsigned int KMAX = 1e6;
17
		const unsigned int KMAX = 1e6;
20
 
-
 
21
		// The threshold below is the smallest that seems to give reliable
-
 
22
		// solutions.
-
 
23
		const double EV_THRESH = 1e-6;
18
		const double EV_THRESH = 1e-6;
24
}
19
}
25
 
20
 
26
namespace CGLA
21
namespace CGLA
27
{
22
{