Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abraunst committed Sep 26, 2023
1 parent 09c6929 commit e19932c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
PYTHON=python3
PYTHON_CONFIG=python3-config
INC=-Ilib -I${CONDA_PREFIX}/include
EXTRA=-O3
VERSION=$(shell git show -s --pretty="%h %ad %d")
CFLAGS=-fPIC -std=c++11 -Wall -g -fopenmp ${INC}
SO=_sib$(shell ${PYTHON}-config --extension-suffix)
SO=_sib$(shell ${PYTHON_CONFIG} --extension-suffix)
LINK=-lgomp -lm -DVERSION="\"${VERSION}\""
PYINC=$(shell ${PYTHON} -m pybind11 --includes)
DEP=$(wildcard *.h)
Expand Down
2 changes: 1 addition & 1 deletion test/data_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def save_json(obj,file_,indent=1):
ALL_EPI = "all_epidemies"

NAMES_COLS_CONTACTS = ["t","i","j","lambda"]
CONTACTS_DTYPES = dict(zip(NAMES_COLS_CONTACTS,(np.int,np.int,np.int,np.float) ))
CONTACTS_DTYPES = dict(zip(NAMES_COLS_CONTACTS,(int,int,int,float) ))



Expand Down

0 comments on commit e19932c

Please sign in to comment.