Skip to content
Snippets Groups Projects
Commit 97661b7f authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix fpe
parent 4f3f76f6
No related branches found
No related tags found
No related merge requests found
// $Id: ExtractElements.cpp,v 1.4 2006-01-29 23:25:20 geuzaine Exp $ // $Id: ExtractElements.cpp,v 1.5 2006-03-10 17:03:21 geuzaine Exp $
// //
// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
// //
...@@ -86,6 +86,9 @@ static void extract(List_T *inList, int inNb, ...@@ -86,6 +86,9 @@ static void extract(List_T *inList, int inNb,
List_T *outList, int *outNb, List_T *outList, int *outNb,
int timeStep, int nbNod, int nbComp) int timeStep, int nbNod, int nbComp)
{ {
if(!inNb)
return;
double MinVal = ExtractElementsOptions_Number[0].def; double MinVal = ExtractElementsOptions_Number[0].def;
double MaxVal = ExtractElementsOptions_Number[1].def; double MaxVal = ExtractElementsOptions_Number[1].def;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment