User Tools

Site Tools


haas:summer2017:cprog:projects:pnc1

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
haas:summer2017:cprog:projects:pnc1 [2017/06/19 15:33] – [Program] wedgehaas:summer2017:cprog:projects:pnc1 [2017/06/19 15:41] (current) – [Submission] wedge
Line 326: Line 326:
  
 <cli> <cli>
-lab46:~/src/cprog/pnc1$ ./primesqrt 90 +lab46:~/src/cprog/pnc1$ ./primebrkodd 32 1 
-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:~/src/cprog/pnc1$  lab46:~/src/cprog/pnc1$ 
 </cli> </cli>
  
 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, I rigged up a script called **primerun** which you can run. If you'd like to compare your implementations, I rigged up a script called **primerun** which you can run.
Line 373: 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 "OK" displayed beneath in the appropriate column; if unsuccessful, you will see "MISMATCH". 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 "OK" displayed beneath in the appropriate column; if unsuccessful, you will see "MISMATCH".
  
 +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 380: 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 396: 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 "pnc1": Submitting cprog project "pnc1":
-    -> 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 413: Line 413:
 <code> <code>
 78:pnc1:final tally of results (78/78) 78:pnc1:final tally of results (78/78)
-*:pnc1:submit all programs correctly named using submit tool [3/3] +*:pnc1:submit all programs correctly perform argument checking [3/3] 
-*: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]
 </code> </code>
  
haas/summer2017/cprog/projects/pnc1.1497886384.txt.gz · Last modified: 2017/06/19 15:33 by wedge