Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: true
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
BraceWrapping:
AfterClass: false
AfterControlStatement: false
AfterEnum: false
Expand Down Expand Up @@ -65,7 +65,7 @@ DisableFormat: false
ExperimentalAutoDetectBinPacking: false
FixNamespaceComments: true
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
IncludeCategories:
IncludeCategories:
- Regex: '^"'
Priority: 1
- Regex: '^<'
Expand Down
44 changes: 0 additions & 44 deletions .ecp-ci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
check_formatting:
uses: NWChemEx/.github/.github/workflows/check_formatting.yaml@master
with:
license_config: ".github/.licenserc.yaml"
license_config: ".licenserc.yaml"

test_nwx_docs:
uses: NWChemEx/.github/.github/workflows/test_nwx_docs.yaml@master
Expand Down
3 changes: 2 additions & 1 deletion .github/.licenserc.yaml → .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ header:
- LICENSE
- docs/requirements.txt
- version.txt
- build/

comment: never
comment: never
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -174,4 +174,4 @@
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS
END OF TERMS AND CONDITIONS
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ Utilities Repository

The C++ standard library as well as the STL are great for providing many of the
features one needs to write a code. However, they leave much to be desired.
This library is intended to be our "Boost" in that it's a series of
This library is intended to be our "Boost" in that it's a series of
extensions to the standard libraries for functionality we commonly want.

At the moment this functionality can be expressed as falling into one of three
sub libraries:

- IterTools: Classes designed to make iteration easier. This includes base
classes for writing your own iterators as well as classes for
iterating over common situations such as:
- All permutations of a sequence
- All combinations of a sequence
- Mathematician : Math functionality beyond that of the STL including:
iterating over common situations such as:
- All permutations of a sequence
- All combinations of a sequence
- Mathematician : Math functionality beyond that of the STL including:
- Binomial coefficients
- Multinomial coefficients
- TypeTraits : Structs to make meta-template programming easier
Expand All @@ -57,12 +57,12 @@ cmake -H. -Bbuild -DCMAKE_PREFIX_PATH=<where/you/installed/CPP> \
cd build
cmake --build .
#May need to run as an admin depending on where you are installing
cmake --build . --target install
cmake --build . --target install
```

Note that the configure will appear to hang when it gets to Catch2.
This is because it is building Catch2. Building of Catch2 can be
Note that the configure will appear to hang when it gets to Catch2.
This is because it is building Catch2. Building of Catch2 can be
avoided by disabling tests (*i.e.*, passing `-DBUILD_TESTS=OFF` to the first
invocation of `cmake`) or by providing CMake with an already built version of
Catch2 by passing `-DCatch2_ROOT=/path/to/catch2` to the first invocation of
Catch2 by passing `-DCatch2_ROOT=/path/to/catch2` to the first invocation of
`cmake`.
1 change: 0 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,3 @@ following Python packages (all available in `pip`):
- exhale (The thing that turns Doxygen output into ReST)

You also will need Doxygen.

Loading