mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The rule changes are as follows: * All functions (introduced with the 'func' keyword) have argument labels for arguments beyond the first, by default. Methods are no longer special in this regard. * The presence of a default argument no longer implies an argument label. The actual changes to the parser and printer are fairly simple; the rest of the noise is updating the standard library, overlays, tests, etc. With the standard library, this change is intended to be API neutral: I've added/removed #'s and _'s as appropriate to keep the user interface the same. If we want to separately consider using argument labels for more free functions now that the defaults in the language have shifted, we can tackle that separately. Fixes rdar://problem/17218256. Swift SVN r27704
92 lines
4.8 KiB
Swift
92 lines
4.8 KiB
Swift
// RUN: %target-jit-run -I %S -enable-source-import %s | FileCheck %s
|
|
// REQUIRES: swift_interpreter
|
|
|
|
// FIXME: iOS: -enable-source-import plus %target-build-swift equals link errors
|
|
// FIXME: This test uses IRGen with -enable-source-import; it may fail with -g.
|
|
|
|
import complex
|
|
|
|
func printDensity(d: Int) {
|
|
if (d > 40) {
|
|
print(" ")
|
|
} else if d > 6 {
|
|
print(".")
|
|
} else if d > 4 {
|
|
print("+")
|
|
} else if d > 2 {
|
|
print("*")
|
|
} else {
|
|
print("#")
|
|
}
|
|
}
|
|
|
|
func getMandelbrotIterations(c: Complex, _ maxIterations: Int) -> Int {
|
|
var n = 0
|
|
var z = Complex()
|
|
while (n < maxIterations && z.magnitude() < 4.0) {
|
|
z = z*z + c
|
|
++n
|
|
}
|
|
return n
|
|
}
|
|
|
|
func mandelbrot(xMin: Double, _ xMax: Double,
|
|
_ yMin: Double, _ yMax: Double,
|
|
_ rows: Int, _ cols: Int) {
|
|
// Set the spacing for the points in the Mandelbrot set.
|
|
var dX = (xMax - xMin) / Double(rows)
|
|
var dY = (yMax - yMin) / Double(cols)
|
|
// Iterate over the points an determine if they are in the
|
|
// Mandelbrot set.
|
|
for var row = xMin; row < xMax ; row += dX {
|
|
for var col = yMin; col < yMax; col += dY {
|
|
var c = Complex(real: col, imag: row)
|
|
printDensity(getMandelbrotIterations(c, 200))
|
|
}
|
|
print("\n")
|
|
}
|
|
}
|
|
|
|
mandelbrot(-1.35, 1.4, -2.0, 1.05, 40, 80)
|
|
|
|
// CHECK: ################################################################################
|
|
// CHECK: ##############################********************##############################
|
|
// CHECK: ########################********************************########################
|
|
// CHECK: ####################***************************+++**********####################
|
|
// CHECK: #################****************************++...+++**********#################
|
|
// CHECK: ##############*****************************++++......+************##############
|
|
// CHECK: ############******************************++++.......+++************############
|
|
// CHECK: ##########******************************+++++.... ...++++************##########
|
|
// CHECK: ########******************************+++++.... ..++++++**********#########
|
|
// CHECK: #######****************************+++++....... .....++++++**********#######
|
|
// CHECK: ######*************************+++++....... . .. ............++*********######
|
|
// CHECK: #####*********************+++++++++... .. . ... ..++*********#####
|
|
// CHECK: ####******************++++++++++++..... ..++**********####
|
|
// CHECK: ###***************++++++++++++++... . ...+++**********###
|
|
// CHECK: ##**************+++................. ....+***********##
|
|
// CHECK: ##***********+++++................. .++***********##
|
|
// CHECK: #**********++++++..... ..... ..++***********##
|
|
// CHECK: #*********++++++...... . ..++************#
|
|
// CHECK: #*******+++++....... ..+++************#
|
|
// CHECK: #++++............ ...+++************#
|
|
// CHECK: #++++............ ...+++************#
|
|
// CHECK: #******+++++........ ..+++************#
|
|
// CHECK: #********++++++..... . ..++************#
|
|
// CHECK: #**********++++++..... .... .++************#
|
|
// CHECK: #************+++++................. ..++***********##
|
|
// CHECK: ##*************++++................. . ..+***********##
|
|
// CHECK: ###***************+.+++++++++++..... ....++**********###
|
|
// CHECK: ###******************+++++++++++++..... ...+++*********####
|
|
// CHECK: ####*********************++++++++++.... .. ..++*********#####
|
|
// CHECK: #####*************************+++++........ . . . .......+*********######
|
|
// CHECK: #######***************************+++.......... .....+++++++*********#######
|
|
// CHECK: ########*****************************++++++.... ...++++++**********########
|
|
// CHECK: ##########*****************************+++++..... ....++++***********##########
|
|
// CHECK: ###########******************************+++++........+++***********############
|
|
// CHECK: #############******************************++++.. ...++***********##############
|
|
// CHECK: ################****************************+++...+++***********################
|
|
// CHECK: ###################***************************+.+++**********###################
|
|
// CHECK: #######################**********************************#######################
|
|
// CHECK: ############################************************############################
|
|
// CHECK: ################################################################################
|