Skip to content

Commit 7bd092f

Browse files
committed
Added a Pythonic module that contains the analog of the C++ data class dyn_control_params - now it is broken into dyn.control_params
1 parent 4ad499a commit 7bd092f

3 files changed

Lines changed: 718 additions & 3 deletions

File tree

src/libra_py/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
# ***********************************************************
2-
# * Copyright (C) 2016-2021 Alexey V. Akimov
2+
# * Copyright (C) 2016-2026 Alexey V. Akimov
33
# * This file is distributed under the terms of the
44
# * GNU General Public License as published by the
55
# * Free Software Foundation; either version 3 of the
66
# * License, or (at your option) any later version.
77
# * http://www.gnu.org/copyleft/gpl.txt
88
# ***********************************************************/
99

10-
__all__ = ["dynamics",
11-
"models",
10+
__all__ = ["models",
1211
"workflows",
1312
"recipes",
1413
"acf",
@@ -23,6 +22,8 @@
2322
"data_savers",
2423
"data_stat",
2524
"data_visualize",
25+
"dyn",
26+
"dynamics",
2627
"dynamics_plotting",
2728
"eigensolvers",
2829
"fgr_py",

src/libra_py/dyn/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ***********************************************************
2+
# * Copyright (C) 2026 Alexey V. Akimov
3+
# * This file is distributed under the terms of the
4+
# * GNU General Public License as published by the
5+
# * Free Software Foundation; either version 3 of the
6+
# * License, or (at your option) any later version.
7+
# * http://www.gnu.org/copyleft/gpl.txt
8+
# ***********************************************************/
9+
10+
__all__ = ["control_params",
11+
]

0 commit comments

Comments
 (0)