feat: reads potentions from ljc file
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
from diceplayer.utils.ptable import AtomInfo, PTable
|
||||
|
||||
from dataclasses import dataclass
|
||||
from pydantic.dataclasses import dataclass
|
||||
|
||||
|
||||
@dataclass
|
||||
@dataclass(slots=True)
|
||||
class Atom:
|
||||
"""
|
||||
Atom class declaration. This class is used throughout the DicePlayer program to represent atoms.
|
||||
|
||||
@@ -10,10 +10,11 @@ import numpy as np
|
||||
import numpy.linalg as linalg
|
||||
import numpy.typing as npt
|
||||
from typing_extensions import List, Self, Tuple
|
||||
from pydantic.dataclasses import dataclass
|
||||
|
||||
import math
|
||||
from copy import deepcopy
|
||||
from dataclasses import dataclass, field
|
||||
from dataclasses import field
|
||||
from functools import cached_property
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user