Skip to content

Commit

Permalink
Merge pull request #37 from frankwswang/dev (0.2.1 updates)
Browse files Browse the repository at this point in the history
- Added SAD initial guess for HF 
- Fixed a bug for UHF gradient case 
- Updated libcint_jll version 
- Changed Molden.jl test method 
- Added support for higher angular momentum 
- Fixed bug for multi-center mul (Start implementing own integral engine) 
- Code optimizations
  • Loading branch information
frankwswang authored Dec 12, 2021
2 parents 5c2809c + 285da5f commit e3c137d
Show file tree
Hide file tree
Showing 56 changed files with 5,376 additions and 303 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
version:
- '1.5'
- '1.6'
- '1.7'
- '1'
os:
- ubuntu-latest
Expand Down
9 changes: 5 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name = "Quiqbox"
uuid = "7cb8c394-fae1-4ab9-92f2-30189d7746cd"
version = "0.2.0"
version = "0.2.1"

[deps]
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
PiecewiseQuadratics = "63c5698c-79a9-4248-aa10-bd2a91651b58"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
SeparableOptimization = "b66076ac-575f-47ff-93e2-9c43ffc8d39e"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
SymbolicUtils = "d1185830-fcd6-423d-90d6-eec64667417b"
Expand All @@ -16,7 +17,7 @@ libcint_jll = "574b78ca-bebd-517c-801d-4735c93a9686"
Combinatorics = "1"
PiecewiseQuadratics = "0.1"
SeparableOptimization = "0.1"
SymbolicUtils = "0.13, 0.15, 0.16"
Symbolics = "3"
SymbolicUtils = "0.13, 0.15, 0.16, 0.17, 0.18"
Symbolics = "3, 4"
julia = "^1.5"
libcint_jll = "~3.0.0"
libcint_jll = "~3.0.0, ~4.4"
12 changes: 10 additions & 2 deletions docs/src/coreFunction.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Core Functions

```@docs
Exponent
genExponent
```

```@docs
Contraction
genContraction
```

```@docs
genSpatialPoint
```

```@docs
Expand Down Expand Up @@ -68,6 +72,10 @@ sortBasisFuncs
centerOf
```

```@docs
centerCoordOf
```

```@autodocs
Modules = [Quiqbox]
Filter = t -> nameof(t) == :add
Expand Down
10 changes: 5 additions & 5 deletions lib/libcint/Interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ function cintFunc!(libcintFunc::Val,
natm = natm |> Cint
bas = bas .|> Cint
nbas = nbas |> Cint
bufAP = ArrayPointer(buf, showReminder=false)
shlsAP = ArrayPointer(shls, showReminder=false)
atmAP = ArrayPointer(atm, showReminder=false)
basAP = ArrayPointer(bas, showReminder=false)
envAP = ArrayPointer(env, showReminder=false)
bufAP = ArrayPointer(buf, false)
shlsAP = ArrayPointer(shls, false)
atmAP = ArrayPointer(atm, false)
basAP = ArrayPointer(bas, false)
envAP = ArrayPointer(env, false)
intPtrFunc!(libcintFunc,
bufAP.ptr, shlsAP.ptr, atmAP.ptr, natm, basAP.ptr, nbas, envAP.ptr, opt)
copyto!(buf, bufAP.arr)
Expand Down
Loading

2 comments on commit e3c137d

@frankwswang
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/55044

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.1 -m "<description of version>" e3c137d1017235c68db6389ff4a902e789cfa376
git push origin v0.2.1

Please sign in to comment.