mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-15 16:18:22 +01:00
Turn off optimizing on k_temp
This commit is contained in:
parent
6e248c34be
commit
812061be2c
@ -5404,6 +5404,10 @@ calc_vm(LDBLE tc, LDBLE pa)
|
||||
return OK;
|
||||
}
|
||||
|
||||
#if defined(__INTEL_LLVM_COMPILER)
|
||||
#pragma optimize( "", off )
|
||||
#endif
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
int Phreeqc::
|
||||
k_temp(LDBLE tc, LDBLE pa) /* pa - pressure in atm */
|
||||
@ -5478,6 +5482,10 @@ k_temp(LDBLE tc, LDBLE pa) /* pa - pressure in atm */
|
||||
return (OK);
|
||||
}
|
||||
|
||||
#if defined(__INTEL_LLVM_COMPILER)
|
||||
#pragma optimize( "", on )
|
||||
#endif
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
LDBLE Phreeqc::
|
||||
k_calc(LDBLE * l_logk, LDBLE tempk, LDBLE presPa)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user