Skip to content

Commit

Permalink
Release v4.0.2
Browse files Browse the repository at this point in the history
Fix typedef bugs in cint_funcs.h
  • Loading branch information
sunqm committed Oct 5, 2020
1 parent b31487b commit 71f1a18
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 2.6)
project (qcint C)
set(qcint_VERSION_MAJOR "4")
set(qcint_VERSION_MINOR "0")
set(qcint_VERSION_PATCH "1")
set(qcint_VERSION_PATCH "2")
set(qcint_VERSION_TWEAK "0")
set(qcint_VERSION "${qcint_VERSION_MAJOR}.${qcint_VERSION_MINOR}.${qcint_VERSION_PATCH}")
set(qcint_SOVERSION "${qcint_VERSION_MAJOR}")
Expand Down
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Version 4.0.2 (2020-10-03):
* Fix typedef Function in cint_funcs.h
Version 4.0.1 (2020-10-02):
* Fix syntax bugs in AVX and SSE3 mode
Version 4.0.0 (2020-09-23):
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ qcint (quick libcint)

An optimized libcint branch for X86 platform

version 4.0.1
version 4.0.2

2020-10-02
2020-10-03


What is qcint
Expand Down
10 changes: 5 additions & 5 deletions include/cint_funcs.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

#include <cint.h>

typedef void (*CINTOptimizerFunction)(CINTOpt **opt,
int *atm, int natm, int *bas, int nbas, double *env);
typedef int (*CINTIntegralFunction)(double *out, int *dims, int *shls,
int *atm, int natm, int *bas, int nbas, double *env,
CINTOpt *opt, double *cache);
typedef void CINTOptimizerFunction(CINTOpt **opt,
int *atm, int natm, int *bas, int nbas, double *env);
typedef int CINTIntegralFunction(double *out, int *dims, int *shls,
int *atm, int natm, int *bas, int nbas, double *env,
CINTOpt *opt, double *cache);
/* Plain ERI (ij|kl) */
CINTOptimizerFunction int2e_optimizer;
CINTIntegralFunction int2e_cart;
Expand Down

0 comments on commit 71f1a18

Please sign in to comment.