Skip to content

Commit ba83ac3

Browse files
committed
drop RepLieGroups dependency
1 parent 6230337 commit ba83ac3

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

Project.toml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ Polynomials4ML = "03c4bcba-a943-47e9-bfa1-b1661fc2974f"
3636
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
3737
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
3838
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
39-
RepLieGroups = "f07d36f2-91c4-427a-b67b-965fe5ebe1d2"
4039
Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
4140
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
4241
SpheriCart = "5caf2b29-02d9-47a3-9434-5931c85ba645"
@@ -61,20 +60,19 @@ ChunkSplitters = "3.0"
6160
EquivariantTensors = "0.3"
6261
ExtXYZ = "0.2.0"
6362
Interpolations = "0.15"
63+
Lux = "1.25"
64+
LuxCore = "1"
65+
NamedTupleTools = "0.13, 0.14"
66+
Optimisers = "0.3.4, 0.4"
67+
Polynomials4ML = "0.5"
6468
PrettyTables = "1.3, 2.0"
6569
Reexport = "1"
70+
SparseArrays = "1.10"
71+
SpheriCart = "0.2"
6672
StaticArrays = "1"
6773
YAML = "0.4"
68-
Lux = "1.25"
69-
LuxCore = "1"
70-
RepLieGroups = "0.1.1"
71-
Optimisers = "0.3.4, 0.4"
72-
Polynomials4ML = "0.5"
7374
Zygote = "0.6, 0.7"
7475
julia = "1.10, 1.11, 1.12"
75-
SparseArrays = "1.10"
76-
NamedTupleTools = "0.13, 0.14"
77-
SpheriCart = "0.2"
7876

7977
[extras]
8078
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ACE models are defined in terms of body-ordered invariant features of atomic env
2424
### Key Dependencies
2525

2626
* [`Polynomials4ML.jl`](https://github.com/ACEsuit/Polynomials4ML.jl) : basic kernels for embeddings and tensors
27-
* [`RepLieGroups.jl`](https://github.com/ACEsuit/RepLieGroups.jl) : coupling coefficients for equivariant tensors
27+
* [`EquivariantTensors.jl`](https://github.com/ACEsuit/EquivariantTensors.jl) : tools to build equivariant tensors
2828
* [`ACEfit.jl`](https://github.com/ACEsuit/ACEfit.jl) : unified interface to various regression algorithms
2929
* [`AtomsBase.jl`](https://github.com/JuliaMolSim/AtomsBase.jl) : community interface for atomic structures / systems
3030
* [`AtomsCalculators.jl`](https://github.com/JuliaMolSim/AtomsCalculators.jl) : community interface for computing properties of systems

src/models/ace.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ using StaticArrays: SVector
66
using LinearAlgebra: norm, dot
77
using Polynomials4ML: real_sphericalharmonics, real_solidharmonics
88

9-
import RepLieGroups
109
import EquivariantTensors
1110

1211

@@ -675,4 +674,4 @@ function evaluate_basis_ed(model::ACEModel,
675674
dB = collect(permutedims(reshape(dB1, length(Rs), length(B)), (2, 1)))
676675

677676
return B, dB
678-
end
677+
end

0 commit comments

Comments
 (0)