Skip to content

Commit

Permalink
Changes related to the v1.0.11 release.
Browse files Browse the repository at this point in the history
	modified:   HISTORY.md
	modified:   README.md
	modified:   daa/daa.doc
	modified:   daa/daa.hpp
	deleted:    daa/doc/html/index.html
	modified:   daa/test/daa_test.cpp
  • Loading branch information
rahogaboom committed Dec 19, 2019
1 parent 84ca63a commit 09e4280
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 544 deletions.
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
```
daa-1.0.11.tar.gz -
a. change namespace to Daa.
b. checked against compilers:
g++ - g++ (GCC) 9.2.1 20190827 (Red Hat 9.2.1-1)
clang++ - clang version 9.0.0 (Fedora 9.0.0-1.fc31)
daa-1.0.10.tar.gz -
a. changes related to updating project to conform to the boost
header file and namespace standard.
Expand Down
16 changes: 3 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,25 +70,14 @@ Files:
Examples:
An excerpt of TESTs 1, 5 and 17 from daa_test.cpp
An excerpt of TESTs 1, 5 and 17 from daa_test.cpp.
TEST 1 - demonstrate passing slices of arrays to subroutines and
visibility of changes at any level throughout
TEST 5 - demonstrate 10 dimensional array with different starting
subscripts for each dimension
TEST 17 - demonstrate single dimensional array with elements that
are 4 megabyte strings
// Boost daa_test.cpp
//
// Copyright Richard Allen Hogaboom 1997 - 2019.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// Boost Software License - Version 1.0 - August 17th, 2003
//
#include <cstdio>
#include <cstring>
Expand Down Expand Up @@ -155,7 +144,7 @@ Examples:
int
main()
{
using namespace boost;
using namespace Daa;
/*
* TEST 1
Expand Down Expand Up @@ -516,4 +505,5 @@ daa(
char *base_ptr,
char *init_ptr)
```
2 changes: 1 addition & 1 deletion daa/daa.doc
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Examples:
int
main()
{
using namespace boost;
using namespace Daa;

/*
* TEST 1
Expand Down
12 changes: 6 additions & 6 deletions daa/daa.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Boost daa.hpp
// daa.hpp

//
// Copyright Richard Allen Hogaboom 1997 - 2019.
Expand All @@ -10,12 +10,12 @@
// Boost Software License - Version 1.0 - August 17th, 2003
//

#ifndef BOOST_DAA_HPP
#define BOOST_DAA_HPP
#ifndef DAA_HPP
#define DAA_HPP

#include <cstdlib>

namespace boost
namespace Daa
{

/*
Expand Down Expand Up @@ -511,7 +511,7 @@ daa(
ptr_ptr, dim, st, dp);
}

} // boost namespace
} // daa namespace

#endif // BOOST_DAA_HPP
#endif // DAA_HPP

Loading

0 comments on commit 09e4280

Please sign in to comment.