Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run:
git config --global core.autocrlf false
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: julia-actions/setup-julia@v1
with:
version: "1.11"
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@v2
- name: add CESMIX registry
run: |
julia -e '
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "InteratomicPotentials"
uuid = "a9efe35a-c65d-452d-b8a8-82646cd5cb04"
authors = ["Dallas Foster <fostdall@mit.edu>", "Spencer Wyant <swyant@mit.edu>"]
version = "0.3.1"
version = "0.3.2"

[deps]
ACE1 = "e3f9bc04-086e-409a-ba78-e9769fe067bb"
Expand Down
3 changes: 2 additions & 1 deletion src/BasisSystems/ACE/ace.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ function convert_system_to_atoms(system::AbstractSystem)
end

function compute_local_descriptors(A::AbstractSystem, ace::ACE)
return [ site_energy(ace.rpib, convert_system_to_atoms(A), i)
sys = convert_system_to_atoms(A)
return [ site_energy(ace.rpib, sys, i)
for i = 1:length(A)]
end

Expand Down
Loading