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

Feature/init states for phen control #37

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ num-bigint = "0.4.6"
num-traits = "0.2.19"
either = "1.13.0"
itertools = "0.13.0"
clap = "4.5.21"

# Include Z3 dependencies as strictly as possible, we don't want
# this to change because it might break our release builds.
Expand Down
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "biodivine_aeon" %}
{% set version = "1.2.0" %}
{% set version = "1.2.1" %}

package:
name: "{{ name|lower }}"
Expand Down
4 changes: 4 additions & 0 deletions src/bindings/pbn_control/control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ impl Control {
/// all network colors). When this option is active, other results that have been computed
/// so far are still returned.
///
/// Optionally, you can also provide a set of `initial_states` that will be considered as the
/// only potential initial states of the network (e.g. in case of some initial states are not
/// considered valid).
///
#[staticmethod]
#[pyo3(signature = (graph, phenotype, oscillation_type = None, size_limit = None, stop_when_found = false, initial_states = None))]
pub fn phenotype_permanent(
Expand Down
Loading