Skip to content

Commit 7d9715e

Browse files
authored
Release preparation (#101)
* updated travis. * updated travis. * fixed memory leak. * fixed the miss-aligned issue. * release preparation.
1 parent 6cf40c4 commit 7d9715e

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ See [the header][api] for documentation of these templates.
99

1010
To use MGARD,
1111

12-
1. Run `make lib/libmgard.a` to generate a static library.
12+
1. Build MGARD by either running `make lib/libmgard.a` to generate a static library, or 'cmake -DCMAKE_INSTALL_PREFIX=<location to install MGARD> -DCMAKE_BUILD_TYPE=RELEASE -DZSTD_ROOT=<optional, location to ZSTD installation> ..'.
1313
2. Include `mgard_api.h` in any source files making use of the API.
1414
3. Link against `libmgard.a` when creating your executable.
1515

include/mgard.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Copyright 2017, Brown University, Providence, RI.
22
// MGARD: MultiGrid Adaptive Reduction of Data
3-
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney
4-
// Corresponding Author: Ozan Tugluk
3+
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney, Qing Liu
4+
// Corresponding Author: Ben Whitney, Qing Liu
55
//
6-
// version: 0.0.0.3
6+
// version: 0.1.0
77
// See LICENSE for details.
88
#ifndef MGARD_H
99
#define MGARD_H

include/mgard_api.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 2017, Brown University, Providence, RI.
22
// MGARD: MultiGrid Adaptive Reduction of Data
3-
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney
4-
// Corresponding Author: Ozan Tugluk
3+
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney, Qing Liu
4+
// Corresponding Author: Ben Whitney, Qing Liu
55
//
66
// version: 0.1.0
77
// See LICENSE for details.

include/mgard_nuni.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Copyright 2017, Brown University, Providence, RI.
22
// MGARD: MultiGrid Adaptive Reduction of Data
3-
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney
4-
// Corresponding Author: Ozan Tugluk
3+
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney, Qing Liu
4+
// Corresponding Author: Ben Whitney, Qing Liu
55
//
6-
// version: 0.0.0.2
6+
// version: 0.1.0
77
// See LICENSE for details.
88
#ifndef MGARD_NUNI_H
99
#define MGARD_NUNI_H

src/mgard.tpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Copyright 2017, Brown University, Providence, RI.
22
// MGARD: MultiGrid Adaptive Reduction of Data
3-
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney
4-
// Corresponding Author: Ozan Tugluk
3+
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney, Qing Liu
4+
// Corresponding Author: Ben Whitney, Qing Liu
55
//
6-
// version: 0.0.0.2
6+
// version: 0.1.0
77
// See LICENSE for details.
88
#ifndef MGARD_TPP
99
#define MGARD_TPP

src/mgard_api.tpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Copyright 2017, Brown University, Providence, RI.
22
// MGARD: MultiGrid Adaptive Reduction of Data
33
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney
4-
// Corresponding Author: Ozan Tugluk
4+
// Corresponding Author: Ben Whitney, Qing Liu
55
//
6-
// version: 0.0.0.2
6+
// version: 0.1.0
77
// See LICENSE for details.
88
#ifndef MGARD_API_TPP
99
#define MGARD_API_TPP

src/mgard_nuni.tpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Copyright 2017, Brown University, Providence, RI.
22
// MGARD: MultiGrid Adaptive Reduction of Data
3-
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney
4-
// Corresponding Author: Ozan Tugluk
3+
// Authors: Mark Ainsworth, Ozan Tugluk, Ben Whitney, Qing Liu
4+
// Corresponding Author: Ben Whitney, Qing Liu
55
//
6-
// version: 0.0.0.2
6+
// version: 0.1.0
77
// See LICENSE for details.
88
#ifndef MGARD_NUNI_TPP
99
#define MGARD_NUNI_TPP

0 commit comments

Comments
 (0)