RhinoTrac
LassoSoft Ticket Tracking System
NOTE: If you are using Lasso Server 9.3 please Log your ticket directly via the LUX admin as this will give us more information about your issue.
Ticket #8098: math_ceil generates the same value as math_floor
- Reported by:
- Kim Vandenbroek
- Date:
- 08 Feb, 2018
- Priority:
- major
- Component:
- Lasso 9
- Version:
- 9.3.2b4
- Keywords:
- Platform:
- macOS 10.13.3 (High Sierra)
Issue reported by Kim Vandenbroek (kimrvan@gmail.com)
Company: PacificNW Web
Component: Lasso 9 Server
Version: 9.3.2b4
Platform: macOS 10.13.3 (High Sierra)
Source IP: 75.156.176.28
Detail
======
This code generates the same value for math_ceil as math_floor:
local(line_breaks) = math_floor(654/110)
log_critical('line_breaks (floor): ' + #line_breaks) // shows 5
local(line_breaks) = math_ceil(654/110)
log_critical('line_breaks (ceiling): ' + #line_breaks) // shows 5
Please log in to your LassoSoft account to comment