Mercurial > repos > bimib > cobraxy
changeset 549:4c5fdcefce8e draft default tip
Uploaded
| author | francesco_lapi |
|---|---|
| date | Wed, 29 Oct 2025 11:09:38 +0000 |
| parents | 5aef7b860706 |
| children | |
| files | COBRAxy/README.md COBRAxy/docs/_media/logo-dark.png COBRAxy/docs/_media/logo-light.png COBRAxy/docs/_media/logo.png COBRAxy/docs/_media/logoBORDERS.png COBRAxy/docs/index.html COBRAxy/src/flux_simulation.py |
| diffstat | 7 files changed, 13 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/COBRAxy/README.md Tue Oct 28 11:04:40 2025 +0000 +++ b/COBRAxy/README.md Wed Oct 29 11:09:38 2025 +0000 @@ -1,6 +1,10 @@ -<div align="center"> - <img src="docs/_media/logo.png" alt="COBRAxy Logo" width="200"/> -</div> +<p align="center"> + <picture> + <source media="(prefers-color-scheme: dark)" srcset="docs/_media/logo-dark.png"> + <source media="(prefers-color-scheme: light)" srcset="docs/_media/logo-light.png"> + <img alt="COBRAxy Logo" src="docs/_media/logo-light.png" width="200"> + </picture> +</p> # COBRAxy
--- a/COBRAxy/docs/index.html Tue Oct 28 11:04:40 2025 +0000 +++ b/COBRAxy/docs/index.html Wed Oct 29 11:09:38 2025 +0000 @@ -12,7 +12,7 @@ --theme-color: #4CAF50; --text-color-base: #e1e4e8; --background-color: #0d1117; - --sidebar-background: #161b22; + --sidebar-background: #0d1117; --code-background: #21262d; } @@ -272,4 +272,4 @@ }); </script> </body> -</html> \ No newline at end of file +</html>
--- a/COBRAxy/src/flux_simulation.py Tue Oct 28 11:04:40 2025 +0000 +++ b/COBRAxy/src/flux_simulation.py Wed Oct 29 11:09:38 2025 +0000 @@ -363,9 +363,9 @@ validation = model_utils.validate_model(model_input) - print("\n=== MODEL VALIDATION ===") - for key, value in validation.items(): - print(f"{key}: {value}") + #print("\n=== MODEL VALIDATION ===") + #for key, value in validation.items(): + # print(f"{key}: {value}") model_input.solver.configuration.verbosity = 1 @@ -644,4 +644,4 @@ ############################################################################## if __name__ == "__main__": - main() \ No newline at end of file + main()
