From 0db3f4379c5a30b0fcd467a10444c1c3ca038536 Mon Sep 17 00:00:00 2001 From: Paul Macklin Date: Sun, 26 Jun 2022 22:41:04 -0400 Subject: [PATCH] last bugfix --- BioFVM/BioFVM_microenvironment.cpp | 2 +- README.md | 4 ++-- changes.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BioFVM/BioFVM_microenvironment.cpp b/BioFVM/BioFVM_microenvironment.cpp index 0b3caf6d7..a93eb50aa 100644 --- a/BioFVM/BioFVM_microenvironment.cpp +++ b/BioFVM/BioFVM_microenvironment.cpp @@ -269,7 +269,7 @@ void Microenvironment::apply_dirichlet_conditions( void ) { density_vector( dirichlet_indices[i] ) = dirichlet_value_vectors[i]; } */ - #pragma omp parallel for + // #pragma omp parallel for for( unsigned int i=0 ; i < mesh.voxels.size() ;i++ ) { /* diff --git a/README.md b/README.md index d4d418a33..0bef58397 100644 --- a/README.md +++ b/README.md @@ -271,9 +271,9 @@ None in this version. See 1.10.0. ### Bugfixes: #### 1.10.3 + Fixed bug in `get_single_behavior` and `get_single_base_behavior` where querying any cycle exit rate or cycle entry mistakenly returned -1. - + Corrected declaration of `standard_add_basement_membrane_interactions` in `PhysiCell_standard_models.h` to properly use phenotype by reference. Thank you Inês Gonçalves! - ++ Removed the OpenMP pragma in `void Microenvironment::apply_dirichlet_conditions( void )` (around line 272) that tends to perform more poorly than serial code. + #### 1.10.2 + Fixed error in `double get_single_behavior()` where the `cell-cell adhesion elastic constant` behavior was not found. diff --git a/changes.md b/changes.md index 5469da2a1..bbc582c2f 100644 --- a/changes.md +++ b/changes.md @@ -270,8 +270,8 @@ None in this version. See 1.10.0. ### Bugfixes: #### 1.10.3 + Fixed bug in `get_single_behavior` and `get_single_base_behavior` where querying any cycle exit rate or cycle entry mistakenly returned -1. - + Corrected declaration of `standard_add_basement_membrane_interactions` in `PhysiCell_standard_models.h` to properly use phenotype by reference. Thank you Inês Gonçalves! ++ Removed the OpenMP pragma in `void Microenvironment::apply_dirichlet_conditions( void )` (around line 272) that tends to perform more poorly than serial code. #### 1.10.2 + Fixed error in `double get_single_behavior()` where the `cell-cell adhesion elastic constant` behavior was not found.