-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into sidb-charge-state-update
- Loading branch information
Showing
12 changed files
with
213 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,63 @@ | ||
Electrostatic Ground State Simulation | ||
------------------------------------- | ||
SiDB Electrostatic Ground State Simulation | ||
------------------------------------------ | ||
|
||
These headers provide functions for physically simulating the *ground state* of an SiDB layout. Ground state simulations | ||
are a crucial step in the physical design flow of SiDB layouts, as they are used to validate their functionality. | ||
|
||
|
||
Physical Parameters | ||
################### | ||
|
||
|
||
**Header:** ``fiction/algorithms/simulation/sidb/sidb_simulation_parameters.hpp`` | ||
|
||
.. doxygenstruct:: fiction::sidb_simulation_parameters | ||
:members: | ||
|
||
|
||
Heuristic Ground State Simulation | ||
################################# | ||
|
||
.. _quicksim: | ||
|
||
**Header:** ``fiction/algorithms/simulation/sidb/quicksim.hpp`` | ||
|
||
.. doxygenstruct:: fiction::quicksim_params | ||
:members: | ||
|
||
.. doxygenfunction:: fiction::quicksim(const Lyt& lyt, const quicksim_params& ps = quicksim_params{}, quicksim_stats<Lyt>* pst = nullptr) | ||
.. doxygenfunction:: fiction::quicksim | ||
|
||
|
||
Exhaustive Ground State Simulation | ||
################################## | ||
|
||
|
||
**Header:** ``fiction/algorithms/simulation/sidb/exhaustive_ground_state_simulation.hpp`` | ||
|
||
.. doxygenfunction:: fiction::exhaustive_ground_state_simulation(const Lyt& lyt, const sidb_simulation_parameters& params = sidb_simulation_parameters{}, exgs_stats<Lyt>* ps = nullptr) noexcept | ||
.. doxygenfunction:: fiction::exhaustive_ground_state_simulation | ||
|
||
|
||
Energy Calculation | ||
################## | ||
|
||
**Header:** ``fiction/algorithms/simulation/sidb/energy_distribution.hpp`` | ||
|
||
.. doxygenfunction:: fiction::energy_distribution(const std::vector<charge_distribution_surface<Lyt>>& input_vec) noexcept | ||
.. doxygenfunction:: fiction::energy_distribution | ||
|
||
|
||
**Header:** ``fiction/algorithms/simulation/sidb/minimum_energy.hpp`` | ||
|
||
.. doxygenfunction:: fiction::minimum_energy(const std::vector<charge_distribution_surface<Lyt>>& charge_lyts) noexcept | ||
.. doxygenfunction:: fiction::minimum_energy | ||
|
||
|
||
**Header:** ``fiction/algorithms/simulation/sidb/is_ground_state.hpp`` | ||
|
||
.. doxygenfunction:: fiction::is_ground_state(const quicksim_stats<Lyt>& quicksim_results, const exgs_stats<Lyt>& exhaustive_results) noexcept | ||
.. doxygenfunction:: fiction::is_ground_state | ||
|
||
|
||
Time-to-Solution (TTS) Statistics | ||
################################# | ||
|
||
**Header:** ``fiction/algorithms/simulation/sidb/time_to_solution.hpp`` | ||
|
||
.. doxygenfunction:: fiction::sim_acc_tts(const Lyt& lyt, const quicksim_params& quicksim_params, time_to_solution_stats* ps = nullptr, const uint64_t& repetitions = 100, const double confidence_level = 0.997) noexcept | ||
.. doxygenfunction:: fiction::sim_acc_tts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.