blob: 4f9a7efffbb7503cc23bfab6ec978c1e5602017f [file] [log] [blame]
################################################################################
# Copyright (c) 2020 Geneviève Bastien
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
################################################################################
loadModule("/TraceCompassTest/Test")
base = 10
limit = 100000
value = base;
while base < limit:
if value == 1:
base = base + 1
value = base
value = compute(value)