From 7d2d5d870cacfca30990e0a4d29133b9d53d42ab Mon Sep 17 00:00:00 2001 From: Jacqueline Deans Date: Mon, 17 Apr 2023 15:32:59 -0500 Subject: [PATCH] Fix 32 bit build (#1487) --- .../RUN_ERROR_random_value_truncation/input.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/SIM_mc_generation/RUN_ERROR_random_value_truncation/input.py b/test/SIM_mc_generation/RUN_ERROR_random_value_truncation/input.py index 4c97d2aa..ff191844 100644 --- a/test/SIM_mc_generation/RUN_ERROR_random_value_truncation/input.py +++ b/test/SIM_mc_generation/RUN_ERROR_random_value_truncation/input.py @@ -30,7 +30,7 @@ monte_carlo.mc_master.add_variable(mc_var) # give some crazy initial values to the class -mc_var = trick.MonteCarloVariableRandomNormal( "test.x_normal_trunc[1]", 99565644453, 10, 3.5) +mc_var = trick.MonteCarloVariableRandomNormal( "test.x_normal_trunc[1]", 995656444, 10, 3.5) mc_var.thisown = False # give very small truncate_low distrubution value mc_var.truncate_low(0.1) @@ -43,7 +43,7 @@ monte_carlo.mc_master.add_variable(mc_var) # give some crazy initial values to the class -mc_var = trick.MonteCarloVariableRandomNormal( "test.x_normal_trunc[2]", 99565644453, 10, 3.5) +mc_var = trick.MonteCarloVariableRandomNormal( "test.x_normal_trunc[2]", 995656444, 10, 3.5) mc_var.thisown = False # give negative truncate_high distrubution value mc_var.truncate_high(-50.2)