mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:20:10 +01:00
Every test that used `addr` before #6283 should be using `ref` after this PR. In most cases that was done in #6283, but this PR transitions a few that I missed in that first pass. In addition, #6283 cloned the old `addr` tests from `foo.carbon` to `foo_addr.carbon` in order to maintain test coverage during the transition; this PR removes those cloned tests.
44 lines
939 B
Plaintext
44 lines
939 B
Plaintext
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
import Core library "io";
|
|
import Core library "range";
|
|
|
|
// Compute and return the number of primes less than 1000.
|
|
|
|
class Sieve {
|
|
fn Make() -> Sieve {
|
|
returned var s: Sieve;
|
|
for (n: i32 in Core.Range(1000)) {
|
|
s.is_prime[n] = true;
|
|
}
|
|
return var;
|
|
}
|
|
|
|
fn MarkMultiplesNotPrime[ref self: Self](p: i32) {
|
|
var n: i32 = p * 2;
|
|
while (n < 1000) {
|
|
self.is_prime[n] = false;
|
|
n += p;
|
|
}
|
|
}
|
|
|
|
var is_prime: array(bool, 1000);
|
|
}
|
|
|
|
fn Run() -> i32 {
|
|
var s: Sieve = Sieve.Make();
|
|
|
|
var number_of_primes: i32 = 0;
|
|
for (n: i32 in Core.InclusiveRange(2, 999)) {
|
|
if (s.is_prime[n]) {
|
|
++number_of_primes;
|
|
Core.Print(n);
|
|
s.MarkMultiplesNotPrime(n);
|
|
}
|
|
}
|
|
|
|
return number_of_primes;
|
|
}
|