Skip to content

Commit

Permalink
nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
petschow committed Nov 16, 2012
1 parent b49afa9 commit 67ca970
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SRC/mrrr.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ int mrrr(char *jobz, char *range, int *np, double *restrict D,
} else {
tolstruct->rtol1 = sqrt(DBL_EPSILON);
tolstruct->rtol1 = fmin(tolstruct->rtol1, 1e-2 * MIN_RELGAP);
tolstruct->rtol2 = sqrt(DBL_EPSILON)*5.0E-3;
tolstruct->rtol2 = tolstruct->rtol1*5.0E-3;
tolstruct->rtol2 = fmin(tolstruct->rtol2, MIN_RELGAP * 5.0E-6);
tolstruct->rtol2 = fmax(tolstruct->rtol2, 4.0 * DBL_EPSILON);
}
Expand Down
2 changes: 1 addition & 1 deletion SRC/mrrr_val.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ int mrrr_val(char *jobz, char *range, int nthreads, in_t *Dstruct,
/* Compute desired eigenvalues by bisection or dqds */
if (!useDQDS) {
/* Bisection has been used before, now refine */

info = refine_eigval_approx(max_nthreads, ibgn, iend, wbgn,
wend, ilow, iupp, sigma, spdiam,
Dstruct, Wstruct, tolstruct, work,
Expand Down
2 changes: 1 addition & 1 deletion SRC/process_cluster.c
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ int PMR_create_subtasks(cluster_t *cl, int tid, int nthreads,
double avggap, avggap_factor;

max_size = fmax(1, PMR_get_counter_value(num_left) /
(fmin(depth+1,4)*nthreads) );
(fmin(depth+3,8)*nthreads) );
task_inserted = true;
avggap_factor = 1.0;

Expand Down

0 comments on commit 67ca970

Please sign in to comment.