refactor: replace Logger with RunLogger and streamline logging setup

This commit is contained in:
2026-03-01 11:01:04 -03:00
parent 53f75b44a5
commit c59f0d6516
23 changed files with 71 additions and 2636 deletions

View File

@@ -1,14 +1,14 @@
from __future__ import annotations
from diceplayer import logger
from diceplayer.logger import logger
from diceplayer.environment import Atom
from diceplayer.utils.cache import invalidate_computed_properties
from diceplayer.utils.misc import BOHR2ANG, EA_2_DEBYE
from diceplayer.utils.ptable import GHOST_NUMBER
import numpy as np
import numpy.typing as npt
import numpy.linalg as linalg
import numpy.typing as npt
from typing_extensions import List, Self, Tuple
import math