This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:summer2017:cprog:projects:pnc1 [2017/06/19 15:12] – [sqrt() + odds (primebrksrtodd)] wedge | haas:summer2017:cprog:projects:pnc1 [2017/06/19 15:41] (current) – [Submission] wedge | ||
---|---|---|---|
Line 101: | Line 101: | ||
</ | </ | ||
- | Square root of 81 is 9, but so is the square root of 82, 83, 84... etc. up until we hit 100. | + | Or, if perhaps we instead order by square root value: |
- | If we were checking | + | < |
+ | lab46:~$ oldsqrt=$(echo " | ||
+ | [ 2] 1 [ 3] 1 | ||
+ | [ 4] 2 [ 5] 2 [ 6] 2 [ 7] 2 [ 8] 2 | ||
+ | [ 9] 3 [ 10] 3 [ 11] 3 [ 12] 3 [ 13] 3 [ 14] 3 [ 15] 3 | ||
+ | [ 16] 4 [ 17] 4 [ 18] 4 [ 19] 4 [ 20] 4 [ 21] 4 [ 22] 4 [ 23] 4 [ 24] 4 | ||
+ | [ 25] 5 [ 26] 5 [ 27] 5 [ 28] 5 [ 29] 5 [ 30] 5 [ 31] 5 [ 32] 5 [ 33] 5 [ 34] 5 [ 35] 5 | ||
+ | [ 36] 6 [ 37] 6 [ 38] 6 [ 39] 6 [ 40] 6 [ 41] 6 [ 42] 6 [ 43] 6 [ 44] 6 [ 45] 6 [ 46] 6 [ 47] 6 [ 48] 6 | ||
+ | </ | ||
+ | |||
+ | We see that the square root of 36 is 6, but so is the square root of 37, 38, 39... etc. up until we hit 49 (where the whole number square root increments to 7). | ||
+ | |||
+ | Therefore, if we were checking | ||
We don't need a **sqrt()** function to tell us this, we can determine the approximate square root point ourselves- by squaring the current factor being tested, and so long as it hasn't exceeded the value we're checking, we know to continue. | We don't need a **sqrt()** function to tell us this, we can determine the approximate square root point ourselves- by squaring the current factor being tested, and so long as it hasn't exceeded the value we're checking, we know to continue. | ||
Line 134: | Line 146: | ||
Your program should: | Your program should: | ||
- | * obtain | + | * obtain |
- | * argv[1]: maximum | + | * check to make sure the user indeed supplied enough parameters, and exit with an error message if not. |
- | * this value should be a positive integer value; you can make the assumption that the user will always | + | * argv[1]: maximum |
- | * do the specified algorithmic optimizations | + | * this value should be an integer value, greater than or equal to 0. |
- | * please take note in differences in run-time, contemplating the impact the various algorithms | + | * if argv[1] is 0, disable the quantity check, and rely on provided lower and upper bounds |
- | * start your stopwatch (see **timing** section below): | + | * argv[2]: reserved for future compatibility; |
- | * perform the correct algorithm against the input | + | * argv[3]: **conditionally optional** lower bound (starting |
- | * display | + | * if omitted, assume a lower bound of **2**. |
- | * output the processing run-time to STDERR | + | * if you desired to specify an upper bound (argv[4]), you obviously MUST provide the lower bound argument under this scheme. |
- | * your output **MUST** | + | * argv[4]: **conditionally optional** upper bound (ending value). If provided, this is the ending |
+ | * If doing a quantity run (argv[1] NOT 0), this value isn't necessary. | ||
+ | * If doing a quantity run AND you specify an upper bound, whichever condition is achieved first dictates program termination. That is, upper bound could override quantity (if it is achieved before quantity), and quantity | ||
+ | * for each argument: you should | ||
+ | * for insufficient quantity of arguments, display: **PROGRAM_NAME: | ||
+ | * for invalid argv[1], display: **PROGRAM_NAME: | ||
+ | * for invalid argv[2], display: **PROGRAM_NAME: | ||
+ | * for invalid argv[3], display: **PROGRAM_NAME: | ||
+ | * if argv[3] is not needed, ignore (no error displayed not forced exit, as it is acceptable defined behavior). | ||
+ | * for invalid argv[4], display: **PROGRAM_NAME: | ||
+ | * if argv[4] is not needed, ignore (no error displayed nor forced exit, as it is acceptable defined behavior). | ||
+ | * In these error messages, **PROGRAM_NAME** is the name of the program being run; this can be accessed as a string stored in **argv[0]**. | ||
+ | * please take note in differences in run-time, contemplating the impact the various algorithms/ | ||
+ | * start your stopwatch (see **timing** section below). | ||
+ | * perform the correct algorithm against the input(s) given. | ||
+ | * display to STDOUT | ||
+ | * stop your stopwatch. Calculate the time that has transpired (ending time minus starting time). | ||
+ | * a further coding restriction: | ||
+ | * output the processing run-time to STDERR | ||
+ | * your output **MUST** | ||
* as primes are being displayed, they are space-separated (first prime hugs the left margin), and when all said and done, a newline is issued. | * as primes are being displayed, they are space-separated (first prime hugs the left margin), and when all said and done, a newline is issued. | ||
- | * the timing information will be displayed in accordance to code I will provide (in the **timing** section). | + | * the timing information will be displayed in accordance to code I will provide |
=====Grabit Integration===== | =====Grabit Integration===== | ||
For those familiar with the **grabit** tool on lab46, I have made some skeleton files and a custom **Makefile** available for this project. | For those familiar with the **grabit** tool on lab46, I have made some skeleton files and a custom **Makefile** available for this project. | ||
Line 296: | Line 326: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46: |
- | 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 | + | 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97 101 103 107 109 113 127 131 |
- | 0.000088 | + | 0.000133 |
lab46: | lab46: | ||
</ | </ | ||
The execution of the programs is short and simple- grab the parameters, do the processing, produce the output, and then terminate. | The execution of the programs is short and simple- grab the parameters, do the processing, produce the output, and then terminate. | ||
- | |||
=====Check Results===== | =====Check Results===== | ||
If you'd like to compare your implementations, | If you'd like to compare your implementations, | ||
Line 343: | Line 372: | ||
I also include a validation check- to ensure your prime programs are actually producing the correct list of prime numbers. If the check is successful, you will see " | I also include a validation check- to ensure your prime programs are actually producing the correct list of prime numbers. If the check is successful, you will see " | ||
+ | Analyze the times you see... do they make sense, especially when comparing the algorithm used and the quantity being processed? These are related to some very important core Computer Science considerations we need to be increasingly mindful of as we design our programs and implement our solutions. Algorithmic complexity and algorithmic efficiency will be common themes in all we do. | ||
=====Submission===== | =====Submission===== | ||
To successfully complete this project, the following criteria must be met: | To successfully complete this project, the following criteria must be met: | ||
Line 350: | Line 380: | ||
* Code must be nicely and consistently indented (you may use the **indent** tool) | * Code must be nicely and consistently indented (you may use the **indent** tool) | ||
* Code must utilize the algorithm(s) presented above. | * Code must utilize the algorithm(s) presented above. | ||
- | * **primeodds.c** | + | * **primebrkodd.c** |
- | * **primesqrt.c** | + | * **primebrksrt.c** |
- | * **primesqrtodds.c** | + | * **primebrkoddsrt.c** |
- | * **primesqrtopt.c** | + | * **primebrksrtopt.c** |
- | * **primesqrtoptodds.c** | + | * **primebrkoddsrtopt.c** |
* Code must be commented | * Code must be commented | ||
* have a properly filled-out comment banner at the top | * have a properly filled-out comment banner at the top | ||
Line 366: | Line 396: | ||
<cli> | <cli> | ||
- | $ submit cprog pnc1 primeodds.c primesqrt.c primesqrtodds.c primesqrtopt.c primesqrtoptodds.c | + | $ submit cprog pnc1 primebrkodd.c primebrksrt.c primebrkoddsrt.c primebrksrtopt.c primebrkoddsrtopt.c |
Submitting cprog project " | Submitting cprog project " | ||
- | -> primeodds.c(OK) | + | -> primebrkodd.c(OK) |
- | -> primesqrt.c(OK) | + | -> primebrksrt.c(OK) |
- | -> primesqrtodds.c(OK) | + | -> primebrkoddsrt.c(OK) |
- | -> primesqrtopt.c(OK) | + | -> primebrksrtopt.c(OK) |
- | -> primesqrtoptodds.c(OK) | + | -> primebrkoddsrtopt.c(OK) |
SUCCESSFULLY SUBMITTED | SUCCESSFULLY SUBMITTED | ||
Line 383: | Line 413: | ||
< | < | ||
78: | 78: | ||
- | *: | + | *: |
- | *:pnc1:primeodds.c no negative compiler messages [2/2] | + | *:pnc1:primebrkodd.c no negative compiler messages [2/2] |
- | *:pnc1:primeodds.c implements only specified algorithm [4/4] | + | *:pnc1:primebrkodd.c implements only specified algorithm [4/4] |
- | *:pnc1:primeodds.c adequate indentation and comments [3/3] | + | *:pnc1:primebrkodd.c adequate indentation and comments [3/3] |
- | *:pnc1:primeodds.c output conforms to specifications [3/3] | + | *:pnc1:primebrkodd.c output conforms to specifications [3/3] |
- | *:pnc1:primeodds.c primerun runtime tests succeed [3/3] | + | *:pnc1:primebrkodd.c primerun runtime tests succeed [3/3] |
- | *:pnc1:primesqrt.c no negative compiler messages [2/2] | + | *:pnc1:primebrksrt.c no negative compiler messages [2/2] |
- | *:pnc1:primesqrt.c implements only specified algorithm [4/4] | + | *:pnc1:primebrksrt.c implements only specified algorithm [4/4] |
- | *:pnc1:primesqrt.c adequate indentation and comments [3/3] | + | *:pnc1:primebrksrt.c adequate indentation and comments [3/3] |
- | *:pnc1:primesqrt.c output conforms to specifications [3/3] | + | *:pnc1:primebrksrt.c output conforms to specifications [3/3] |
- | *:pnc1:primesqrt.c primerun runtime tests succeed [3/3] | + | *:pnc1:primebrksrt.c primerun runtime tests succeed [3/3] |
- | *:pnc1:primesqrtodds.c no negative compiler messages [2/2] | + | *:pnc1:primebrkoddsrt.c no negative compiler messages [2/2] |
- | *:pnc1:primesqrtodds.c implements only specified algorithm [4/4] | + | *:pnc1:primebrkoddsrt.c implements only specified algorithm [4/4] |
- | *:pnc1:primesqrtodds.c adequate indentation and comments [3/3] | + | *:pnc1:primebrkoddsrt.c adequate indentation and comments [3/3] |
- | *:pnc1:primesqrtodds.c output conforms to specifications [3/3] | + | *:pnc1:primebrkoddsrt.c output conforms to specifications [3/3] |
- | *:pnc1:primesqrtodds.c primerun runtime tests succeed [3/3] | + | *:pnc1:primebrkoddsrt.c primerun runtime tests succeed [3/3] |
- | *:pnc1:primesqrtopt.c no negative compiler messages [2/2] | + | *:pnc1:primebrksrtopt.c no negative compiler messages [2/2] |
- | *:pnc1:primesqrtopt.c implements only specified algorithm [4/4] | + | *:pnc1:primebrksrtopt.c implements only specified algorithm [4/4] |
- | *:pnc1:primesqrtopt.c adequate indentation and comments [3/3] | + | *:pnc1:primebrksrtopt.c adequate indentation and comments [3/3] |
- | *:pnc1:primesqrtopt.c output conforms to specifications [3/3] | + | *:pnc1:primebrksrtopt.c output conforms to specifications [3/3] |
- | *:pnc1:primesqrtopt.c primerun runtime tests succeed [3/3] | + | *:pnc1:primebrksrtopt.c primerun runtime tests succeed [3/3] |
- | *:pnc1:primesqrtoptodds.c no negative compiler messages [2/2] | + | *:pnc1:primebrkoddsrtopt.c no negative compiler messages [2/2] |
- | *:pnc1:primesqrtoptodds.c implements only specified algorithm [4/4] | + | *:pnc1:primebrkoddsrtopt.c implements only specified algorithm [4/4] |
- | *:pnc1:primesqrtoptodds.c adequate indentation and comments [3/3] | + | *:pnc1:primebrkoddsrtopt.c adequate indentation and comments [3/3] |
- | *:pnc1:primesqrtoptodds.c output conforms to specifications [3/3] | + | *:pnc1:primebrkoddsrtopt.c output conforms to specifications [3/3] |
- | *:pnc1:primesqrtoptodds.c primerun runtime tests succeed [3/3] | + | *:pnc1:primebrkoddsrtopt.c primerun runtime tests succeed [3/3] |
</ | </ | ||