Skip to content

Commit

Permalink
v3.3.0 (June 26, 2020)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Jun 26, 2020
1 parent 7251ab8 commit e833d58
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Demo/Program/tri_demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ int main (int argc, char **argv)

double t_mark [2] = { 0, 0 } ;
OK (tricount (&ntri1 [nthreads], 3, NULL, NULL, L, NULL, t_mark)) ;
printf ("triangles, method 3: %g\n", (double) ntri1 [nthreads]) ;
printf ("triangles, method 3: %0.16g\n", (double) ntri1 [nthreads]) ;
if (ntri1 [nthreads] != nt)
{
printf ("error 3!\n") ;
Expand Down
10 changes: 5 additions & 5 deletions Doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Version 4.0.0, FUTURE, 2020 (this list is tentative):

* GrB_wait(), with no inputs: removed
* GrB_wait(&object): polymorphic function added
* GrB_*_nvals: no longer guarantees completion; use GrB_wait(&object)
* GrB_wait(), with no inputs: will be removed
* GrB_wait(&object): polymorphic function will be added
* GrB_*_nvals: will no longer guarantee completion; use GrB_wait(&object)
or non-polymorphic GrB_*_wait (&object) instead
* GrB_error: now has two inputs: a string (char **) and an object
* V4.0.0 is otherwise identical to V3.3.0.
* GrB_error: will have two inputs: a string (char **) and an object
* V4.0.0 will otherwise be identical to V3.3.0.

Version 3.3.0, June 26, 2020

Expand Down
2 changes: 1 addition & 1 deletion alternative/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ VER3 = 0
# compiler (it complains), and thus this option is only available in this
# alternative/Makefile. The GCC C++ 5.4 compiler fails; version 7.5 is
# sufficient.
# CC = c++
CC = c++

# Using the Intel MKL (don't try this if CC=c++, it will likely break):
# from https://software.intel.com/content/www/us/en/develop/articles/intel-mkl-link-line-advisor.html
Expand Down

0 comments on commit e833d58

Please sign in to comment.