Skip to content

Commit

Permalink
chore: remove broken link and superfluos eigen include (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjappelbaum authored Nov 4, 2022
1 parent c1bf5e0 commit d8f952a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/build.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#!/bin/bash
set -ex

# download eigen-3
wget https://gitlab.com/libeigen/eigen/-/archive/3.2.7/eigen-3.2.7.tar.bz2
tar xf eigen-3.2.7.tar.bz2

cd voro++
make
cd ../
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2

- name: build zeo++
run: bash .github/build.sh
run: sudo apt install libeigen3-dev && bash .github/build.sh

- name: test zeo++
run: |
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ By Maciej Haranczyk, Chris H Rycroft, Richard L Martin, Thomas F Willems
This repository contains a fork of the original zeo++ code (version 0.3.0) with bug fixes and improvements, maintained by the [Laboratory of Molecular Simulation](http://lsmo.epfl.ch/) at EPFL.
For a list of changes, see the [CHANGELOG.md](./CHANGELOG.md).

WWW: http://www.carboncapturematerials.org/Zeo++/

Email: [email protected] (Zeo++) and [email protected] (Voro++)

## About
Expand Down
2 changes: 1 addition & 1 deletion zeo++/OMS.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <iostream>
#include <vector>

#include "Eigen/Dense"
#include "eigen3/Eigen/Dense"
#include "zeo_consts.h"

#define DIM 3
Expand Down

0 comments on commit d8f952a

Please sign in to comment.