Skip to content

Commit 2fd2302

Browse files
authored
Merge pull request #83 from yuki-koyama/update-versions
Update cmake and dependency versions, and perform CI maintenance
2 parents 9e7473f + a0c8ddd commit 2fd2302

26 files changed

+23
-24
lines changed

.github/workflows/macos-python.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
- name: install-test-dependencies
2626
run: |
2727
pip install matplotlib pillow seaborn scipy
28-
brew tap homebrew/cask-fonts && brew install font-linux-biolinum
2928
- name: test
3029
run: |
3130
python ./python-examples/bayesian-optimization.py

.github/workflows/ubuntu-python.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
- name: install-test-dependencies
2727
run: |
2828
pip install matplotlib pillow seaborn scipy
29-
sudo apt-get install fonts-linuxlibertine
3029
- name: test
3130
run: |
3231
python ./python-examples/bayesian-optimization.py

examples/gaussian-process-regression/main.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#include <Eigen/Core>
22
#include <cmath>
3+
#include <cassert>
34
#include <fstream>
45
#include <iostream>
5-
#include <mathtoolbox/gaussian-process-regression.hpp>
66
#include <random>
77
#include <string>
8-
#include <timer.hpp>
98
#include <vector>
9+
#include <timer.hpp>
10+
#include <mathtoolbox/gaussian-process-regression.hpp>
1011

1112
using Eigen::MatrixXd;
1213
using Eigen::VectorXd;

examples/log-determinant/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#include <Eigen/Core>
33
#include <Eigen/LU>
44
#include <cmath>
5+
#include <cassert>
56
#include <iostream>
67
#include <mathtoolbox/log-determinant.hpp>
78

external/pybind11

Submodule pybind11 updated 278 files

external/timer

include/mathtoolbox/backtracking-line-search.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#ifndef MATHTOOLBOX_BACKTRACKING_LINE_SEARCH_HPP
22
#define MATHTOOLBOX_BACKTRACKING_LINE_SEARCH_HPP
33

4-
#include <Eigen/Core>
4+
#include <cassert>
55
#include <functional>
66
#include <iostream>
7+
#include <Eigen/Core>
78

89
namespace mathtoolbox
910
{

include/mathtoolbox/rbf-interpolation.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#ifndef MATHTOOLBOX_RBF_INTERPOLATION_HPP
22
#define MATHTOOLBOX_RBF_INTERPOLATION_HPP
33

4-
#include <Eigen/Core>
4+
#include <cassert>
55
#include <cmath>
66
#include <functional>
77
#include <memory>
88
#include <vector>
9+
#include <Eigen/Core>
910

1011
namespace mathtoolbox
1112
{

include/mathtoolbox/strong-wolfe-conditions-line-search.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#ifndef MATHTOOLBOX_STRONG_WOLFE_CONDITIONS_LINE_SEARCH_HPP
22
#define MATHTOOLBOX_STRONG_WOLFE_CONDITIONS_LINE_SEARCH_HPP
33

4-
#include <Eigen/Core>
54
#include <cassert>
65
#include <functional>
76
#include <iostream>
7+
#include <Eigen/Core>
88

99
#define MATHTOOLBOX_VERBOSE_LINE_SEARCH_WARNINGS
1010

0 commit comments

Comments
 (0)