Skip to content

Commit

Permalink
Merge pull request #7 from sandialabs/dev
Browse files Browse the repository at this point in the history
Further updates for the 1.1.1 release
  • Loading branch information
whart222 authored Oct 9, 2022
2 parents b2a75bb + 3e57a7b commit 251ae9c
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions doc/build_doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ if [[ $1 == "poek" ]]; then
echo "Building poek documentation with cmake";
mkdir _build
cd _build
conda run -p /home/docs/checkouts/readthedocs.org/user_builds/poek/checkouts/dev/rtd ../rtd/bin/cmake -Dwith_docs=ON -Dwith_python=ON ..
conda run -p /home/docs/checkouts/readthedocs.org/user_builds/poek/checkouts/dev/rtd make install_tpls
conda run -p /home/docs/checkouts/readthedocs.org/user_builds/poek/checkouts/dev/rtd make VERBOSE=1
conda run -p /home/docs/checkouts/readthedocs.org/user_builds/poek/checkouts/dev/rtd make doc_poek
conda run -p ../rtd ../rtd/bin/cmake -Dwith_docs=ON -Dwith_python=ON ..
conda run -p ../rtd make install_tpls
conda run -p ../rtd make VERBOSE=1
conda run -p ../rtd make doc_poek
mv lib/poek/doc/sphinx ../_readthedocs/html
fi
1 change: 1 addition & 0 deletions lib/coek/coek/api/constraint.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include "../ast/base_terms.hpp"
#include "../ast/constraint_terms.hpp"
#include "../ast/expr_terms.hpp"
#include "../ast/value_terms.hpp"
Expand Down
4 changes: 2 additions & 2 deletions lib/coek/coek/api/expression.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#include "coek/api/expression.hpp"

#include "../ast/base_terms.hpp"
#include "../ast/constraint_terms.hpp"
#include "../ast/expr_terms.hpp"
#include "../ast/value_terms.hpp"
#include "../ast/visitor_fns.hpp"
#include "../ast/ast_operators.hpp"
#include "coek/api/expression.hpp"

namespace coek {

Expand Down
1 change: 1 addition & 0 deletions lib/coek/coek/api/expression_visitor.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include "../ast/base_terms.hpp"
#include "../ast/constraint_terms.hpp"
#include "../ast/value_terms.hpp"
#include "../ast/visitor_fns.hpp"
Expand Down
3 changes: 1 addition & 2 deletions lib/coek/coek/ast/constraint_terms.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#include "constraint_terms.hpp"

#include "base_terms.hpp"
#include "constraint_terms.hpp"

namespace coek {

Expand Down
1 change: 0 additions & 1 deletion lib/coek/coek/ast/constraint_terms.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#pragma once

#include <string>

#include "base_terms.hpp"

namespace coek {
Expand Down
1 change: 1 addition & 0 deletions lib/coek/coek/autograd/cppad_repn.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <unordered_map>

#include "../ast/base_terms.hpp"
#include "../ast/constraint_terms.hpp"
#include "../ast/expr_terms.hpp"
#include "../ast/value_terms.hpp"
Expand Down
1 change: 1 addition & 0 deletions lib/coek/coek/model/writer_nl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# include <fmt/os.h>
#endif

#include "../ast/base_terms.hpp"
#include "../ast/constraint_terms.hpp"
#include "../ast/expr_terms.hpp"
#include "../ast/value_terms.hpp"
Expand Down

0 comments on commit 251ae9c

Please sign in to comment.