Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Extended BDL input iterator to support different SiDB input representations #521

Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
06ca5f6
:sparkles: Added an option to decide how input patterns are implement…
Drewniok Sep 3, 2024
baffb45
:alembic: add experiment for temperature simulation.
Drewniok Sep 3, 2024
432ebc9
:memo: Update pyfiction docstrings
actions-user Sep 3, 2024
362a6fe
🎨 Incorporated pre-commit fixes
pre-commit-ci[bot] Sep 3, 2024
4f321c6
:memo: update docu.
Drewniok Sep 3, 2024
abc6a1e
🎨 Incorporated pre-commit fixes
pre-commit-ci[bot] Sep 3, 2024
0fa2a02
:memo: small fix.
Drewniok Sep 3, 2024
c875577
:art: small fix.
Drewniok Sep 4, 2024
f607f27
:art: small fix to avoid window compile issue.
Drewniok Sep 4, 2024
de5d56d
:memo: Update pyfiction docstrings
actions-user Sep 4, 2024
7ba193e
:rotating_light: implement clang-tidy warning.
Drewniok Sep 4, 2024
aef5d7f
Merge remote-tracking branch 'origin/update_bdl_input_iterator_and_te…
Drewniok Sep 4, 2024
bfe7b12
🎨 Incorporated pre-commit fixes
pre-commit-ci[bot] Sep 4, 2024
704e540
:memo: update docu.
Drewniok Sep 4, 2024
6ff3711
:art: small fix.
Drewniok Sep 4, 2024
f098907
:art: small fix.
Drewniok Sep 5, 2024
4d00092
:memo: Update pyfiction docstrings
actions-user Sep 5, 2024
8832857
:art: implement Marcel's feedback.
Drewniok Sep 6, 2024
455ae7a
🎨 Incorporated pre-commit fixes
pre-commit-ci[bot] Sep 6, 2024
8164a01
:memo: Update pyfiction docstrings
actions-user Sep 6, 2024
c0514f4
:memo: add changelog entry.
Drewniok Sep 6, 2024
8906f74
Merge remote-tracking branch 'origin/update_bdl_input_iterator_and_te…
Drewniok Sep 6, 2024
10b1e97
:memo: fix changelog entry.
Drewniok Sep 6, 2024
4dae22d
Merge branch 'main' into update_bdl_input_iterator_and_temperature_ex…
Drewniok Sep 6, 2024
dcef85c
Merge branch 'main' into update_bdl_input_iterator_and_temperature_ex…
Drewniok Sep 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
📝 small fix.
  • Loading branch information
Drewniok committed Sep 3, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 0fa2a0202ece82ba5d4dcc81d80e25f26682a23a
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ inline void critical_temperature(pybind11::module& m)
.def_readwrite("max_temperature", &fiction::critical_temperature_params::max_temperature,
DOC(fiction_critical_temperature_params_max_temperature))
.def_readwrite("input_bdl_iterator_params", &fiction::critical_temperature_params::input_bdl_iterator_params,
DOC(fiction_critical_temperature_params_bdl_params));
DOC(fiction_critical_temperature_params_input_bdl_iterator_params));

// NOTE be careful with the order of the following calls! Python will resolve the first matching overload!

Loading