From 4812939b21038f438dde15937c21e71118509bb5 Mon Sep 17 00:00:00 2001 From: Luv Sharma Date: Wed, 2 Jul 2014 14:54:43 +0000 Subject: [PATCH] fixed error concerning state indices check --- code/constitutive_nonlocal.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/constitutive_nonlocal.f90 b/code/constitutive_nonlocal.f90 index 2cdc4c60c..a8771f7e2 100644 --- a/code/constitutive_nonlocal.f90 +++ b/code/constitutive_nonlocal.f90 @@ -1133,7 +1133,7 @@ allocate(nonSchmidProjection(3,3,4,maxTotalNslip,maxNinstances), iD(s,c,instance) = l enddo enddo - if (iD(ns,2,instance) /= constitutive_nonlocal_sizeState(instance)) & ! check if last index is equal to size of state + if (iD(ns,2,instance) /= sizeState) & ! check if last index is equal to size of state call IO_error(0_pInt, ext_msg = 'state indices not properly set ('//PLASTICITY_NONLOCAL_label//')')