@@ -33,17 +33,17 @@ macro_rules! generate_benchmarks {
3333}
3434
3535generate_benchmarks ! {
36- "(3 * (4 + sqrt(25)) - cos(pi/3) * (2^3)) + 5 * e" , // Mixed nested functions, constants, and operations
37- "((5 + 2 * (3 - sqrt(49)))^2) / (1 + sqrt(16)) + tau / 2" , // Complex nested expression with constants
38- "log(100, 10) + (5 * sin(pi/4) + sqrt(81)) / (2 * phi)" , // Logarithmic and trigonometric functions
39- "(sqrt(144) * 2 + 5) / (3 * (4 - sin(pi / 6))) + e^2" , // Combined square root, trigonometric, and exponential operations
40- "cos(2 * pi) + tan(pi / 3) * log(32, 2) - sqrt(256)" , // Multiple trigonometric and logarithmic functions
41- "(10 * (3 + 2) - 8 / 2)^2 + 7 * (2^4) - sqrt(225) + phi" , // Mixed arithmetic with constants
42- "(5^2 + 3^3) * (sqrt(81) + sqrt(64)) - tau * log(1000, 10)" , // Power and square root with constants
43- "((8 * sqrt(49) - 2 * e) + log(256, 2) / (2 + cos(pi))) * 1.5" , // Nested functions and constants
44- "(tan(pi / 4) + 5) * (3 + sqrt(36)) / (log(1024, 2) - 4)" , // Nested functions with trigonometry and logarithm
45- "((3 * e + 2 * sqrt(100)) - cos(tau / 4)) * log(27, 3) + phi" , // Mixed constant usage and functions
46- "(sqrt(100) + 5 * sin(pi / 6) - 8 / log(64, 2)) + e^(1.5)" , // Complex mix of square root, division, and exponentiation
47- "((sin(pi/2) + cos(0)) * (e^2 - 2 * sqrt(16))) / (log(100, 10) + pi)" , // Nested trigonometric, exponential, and logarithmic functions
48- "(5 * (7 + sqrt(121)) - (log(243, 3) * phi)) + 3^5 / tau" , //
36+ "(3 * (4 + @ sqrt(25)) - @ cos(pi/3) * (2^3)) + 5 * e" , // Mixed nested functions, constants, and operations
37+ "((5 + 2 * (3 - @ sqrt(49)))^2) / (1 + @ sqrt(16)) + tau / 2" , // Complex nested expression with constants
38+ "@ log(100, 10) + (5 * @ sin(pi/4) + @ sqrt(81)) / (2 * phi)" , // Logarithmic and trigonometric functions
39+ "(@ sqrt(144) * 2 + 5) / (3 * (4 - @ sin(pi / 6))) + e^2" , // Combined square root, trigonometric, and exponential operations
40+ "@ cos(2 * pi) + @ tan(pi / 3) * @ log(32, 2) - @ sqrt(256)" , // Multiple trigonometric and logarithmic functions
41+ "(10 * (3 + 2) - 8 / 2)^2 + 7 * (2^4) - @ sqrt(225) + phi" , // Mixed arithmetic with constants
42+ "(5^2 + 3^3) * (@ sqrt(81) + @ sqrt(64)) - tau * @ log(1000, 10)" , // Power and square root with constants
43+ "((8 * @ sqrt(49) - 2 * e) + @ log(256, 2) / (2 + @ cos(pi))) * 1.5" , // Nested functions and constants
44+ "(tan(pi / 4) + 5) * (3 + @ sqrt(36)) / (@ log(1024, 2) - 4)" , // Nested functions with trigonometry and logarithm
45+ "((3 * e + 2 * @ sqrt(100)) - @ cos(tau / 4)) * @ log(27, 3) + phi" , // Mixed constant usage and functions
46+ "(@ sqrt(100) + 5 * @ sin(pi / 6) - 8 / log(64, 2)) + e^(1.5)" , // Complex mix of square root, division, and exponentiation
47+ "((@ sin(pi/2) + @ cos(0)) * (e^2 - 2 * @ sqrt(16))) / (@ log(100, 10) + pi)" , // Nested trigonometric, exponential, and logarithmic functions
48+ "(5 * (7 + @ sqrt(121)) - (@ log(243, 3) * phi)) + 3^5 / tau" , //
4949}
0 commit comments