User Tools

Site Tools


haas:summer2017:cprog:projects:pnc0

Differences

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

Link to this comparison view

Next revision
Previous revision
haas:summer2017:cprog:projects:pnc0 [2017/02/16 21:14] – external edit 127.0.0.1haas:summer2017:cprog:projects:pnc0 [2017/06/19 15:00] (current) – [Command-Line Arguments] wedge
Line 82: Line 82:
  
   - **primebrute.c**: for your brute force implementation   - **primebrute.c**: for your brute force implementation
-  - **primebruteopt.c**: for your slightly optimized brute force implementation+  - **primebrk.c**: implementation that breaks out of checking once prime test fails
  
 Your program should: Your program should:
-  * obtain 1 parameter from the command-line (see **command-line arguments** section below): +  * obtain 2-4 parameters from the command-line (see **command-line arguments** section below)
-    * argv[1]: maximum value to calculate to (your program should run from (approximately) 2 through that number (inclusive of that number+    * 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 valueyou can make the assumption that the user will always do the right thing.+    * argv[1]: maximum quantity of primes to calculate (your program should run until it discovers **that** many primes). 
 +      * this value should be an integer value, greater than or equal to 0. 
 +        * if argv[1] is 0, disable the quantity check, and rely on provided lower and upper bounds (argv[4] would be required in this case). 
 +    * argv[2]: reserved for future compatibility; for now, assume it is **1**. 
 +    * argv[3]: **conditionally optional** lower bound (starting value). Most of the time, this will probably be **2**, but should be a positive integer greater than or equal to 2. This defines where you program will start its prime quantity check from. 
 +      * if omitted, assume a lower bound of **2**. 
 +      * if you desired to specify an upper bound (argv[4]), you obviously MUST provide the lower bound argument under this scheme. 
 +    * argv[4]: **conditionally optional** upper bound (ending value). If provided, this is the ending value you'd like to check to. 
 +      * 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 can override the upper bound (if it is achieved before reaching the specified upper bound). 
 +    * for each argument: you should do a basic check to ensure the user complied with this specification, and exit with a unique error message (displayed to STDERR) otherwise: 
 +      * for insufficient quantity of arguments, display: **PROGRAM_NAME: insufficient number of arguments!** 
 +      * for invalid argv[1], display: **PROGRAM_NAME: invalid quantity!** 
 +      * for invalid argv[2], display: **PROGRAM_NAME: invalid value!** 
 +      * for invalid argv[3], display: **PROGRAM_NAME: invalid lower bound!** 
 +        * 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: invalid upper bound!** 
 +        * 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]**.
   * do NO algorithmic optimizations of any sort (it is called brute-force for a reason).   * do NO algorithmic optimizations of any sort (it is called brute-force for a reason).
-  * in the case of **primebruteopt**, perform only the short circuit optimization described above.+  * in the case of **primebrk**, perform only the short circuit optimization described above.
     * please take note in differences in run-time, contemplating the impact the two algorithms have on performance.     * please take note in differences in run-time, contemplating the impact the two algorithms have on performance.
-  * start your stopwatch (see **timing** section below): +  * start your stopwatch (see **timing** section below). 
-  * perform the correct algorithm against the input +  * perform the correct algorithm against the input(s) given. 
-  * display (to STDOUT) the prime numbers found in the range +  * display to STDOUT (file pointer **stdout**) the prime numbers calculated. 
-  * stop your stopwatch. Calculate the time that has transpired. +  * stop your stopwatch. Calculate the time that has transpired (ending time minus starting time). 
-  * output the processing run-time to STDERR +  * a further coding restriction: in each program, you are not allowed to use a given loop type (for(), while(), do-while()) more than once! If you find you need more than one loop in a program, they **CANNOT** be the same type (this is to get you exposed to them and thinking differently)
-  * your output **MUST** be conformant to the example output in the **execution** section below. This is also a test to see how well you can implement to specifications. Basically:+  * output the processing run-time to STDERR (file pointer **stderr**). 
 +  * your output **MUST** conform to the example output in the **execution** section below. This is also a test to see how well you can implement to specifications. Basically:
     * 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 below (see the **timing** section)
 + 
 +=====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. 
 + 
 +To "grab" it: 
 + 
 +<cli> 
 +lab46:~/src/cprog$ grabit cprog pnc0 
 +make: Entering directory '/var/public/SEMESTER/CLASS/PROJECT' 
 +‘/var/public/SEMESTER/CLASS/PROJECT/Makefile’ -> ‘/home/USERNAME/src/CLASS/PROJECT/Makefile’ 
 +‘/var/public/SEMESTER/CLASS/PROJECT/primebrute.c’ -> ‘/home/USERNAME/src/CLASS/PROJECT/primebrute.c’ 
 +‘/var/public/SEMESTER/CLASS/PROJECT/primebrk.c’ -> ‘/home/USERNAME/src/CLASS/PROJECT/primebrk.c’ 
 +make: Leaving directory '/var/public/SEMESTER/CLASS/PROJECT' 
 +lab46:~/src/CLASS$ cd pnc0 
 +lab46:~/src/CLASS/pnc0$ ls 
 +Makefile  primebrute.c  primebrk.c 
 +lab46:~/src/CLASS/pnc0$  
 +</cli> 
 + 
 +NOTE: You do NOT want to do this on a populated pnc0 project directory-- it will overwrite files. 
 + 
 +And, of course, your basic compile and clean-up operations: 
 + 
 +  * **make**: compile everything 
 +  * **make debug**: compile everything with debug support 
 +  * **make clean**: remove all binaries 
 + 
 +Just another "nice thing" we deserve.
  
 =====Command-Line Arguments===== =====Command-Line Arguments=====
Line 124: Line 171:
   * argv[0]: program invocation (path + program name)   * argv[0]: program invocation (path + program name)
   * argv[1]: our maximum / upper bound   * argv[1]: our maximum / upper bound
 +  * argv[2]: reserved value, should still be provided and be a 1 for this project
 +  * argv[3]: conditionally optional; represents lower bound
 +  * argv[4]: conditionally optional; represents upper bound
  
 ====Simple argument checks==== ====Simple argument checks====
-Although I'm not going to require extensive argument parsing or checking for this project, we should check to see if the minimal number of arguments has been provided:+While there are a number of checks we should perform, one of the first should be a check to see if the minimal number of arguments has been provided:
  
 <code c> <code c>
-    if (argc < 2)  // if less than arguments have been provided+    if (argc < 3)  // if less than arguments (program_name + quantity + argv[2] == 3) have been provided
     {     {
-        fprintf(stderr, "Not enough arguments!\n");+        fprintf(stderr, "%s: insufficient number of arguments!\n", argv[0]);
         exit(1);         exit(1);
     }     }
 </code> </code>
  
 +Since argv[3] (lower bound) and argv[4] (upper bound) are conditionally optional, it wouldn't make sense to check for them in the overall count. But we can and do still want to stategically utilize **argc** to determine if an argv[3] or argv[4] is present.
 ====Grab and convert max==== ====Grab and convert max====
 Finally, we need to put the argument representing the maximum value into a variable. Finally, we need to put the argument representing the maximum value into a variable.
Line 203: Line 254:
  
 And with that, we can compute an approximate run-time of our programs. The timing won't necessarily be accurate down to that level of precision, but it will be informative enough for our purposes. And with that, we can compute an approximate run-time of our programs. The timing won't necessarily be accurate down to that level of precision, but it will be informative enough for our purposes.
 +
 +====Loops====
 +A loop is basically instructing the computer to repeat a section, or block, or code a given amount of times (it can be based on a fixed value-- repeat this 4 times, or be based on a conditional value-- keep repeating as long as (or while) this value is not 4).
 +
 +Loops enable us to simplify our code-- allowing us to write a one-size-fits all algorithm (provided the algorithm itself can appropriately scale!), where the computer merely repeats the instructions we gave. We only have to write them once, but the computer can do that task any number of times.
 +
 +Loops can be initially difficult to comprehend because unlike other programmatic actions, they are not single-state in nature-- loops are multi-state. What this means is that in order to correctly "see" or visualize a loop, you must analyze what is going on with EACH iteration or cycle, watching the values/algorithm/process slowly march from its initial state to its resultant state. Think of it as climbing a set of stairs... yes, we can describe that action succinctly as "climbing a set of stairs", but there are multiple "steps" (heh, heh) involved: we place our foot, adjust our balance-- left foot, right foot, from one step, to the next, to the next, allowing us to progress from the bottom step to the top step... that process of scaling a stairway is the same as iterating through a loop-- but what is important as we implement is what needs to happen each step along the way.
 +
 +With that said, it is important to be able to focus on the process of the individual steps being taken. What is involved in taking a step? What constitutes a basic unit of stairway traversal? If that unit can be easily repeated for the next and the next (and in fact, the rest of the) steps, we've described the core process of the loop, or what will be iterated a given number of times.
 +
 +In C and C-syntax influenced languages (C++, Java, PHP, among others), we typically have 3 types of loops:
 +
 +  * **for** loop (automatic counter loop, stepping loop; top-driven) - when we know exactly how many times we wish something to run; we know where we want to start, where we want to end, and exactly how to progress from start to end (step value)
 +  * **while** loop (top-driven conditional loop) - when we want to repeat a process, but the exact number of iterations is either not known, not important, not known, or variable in nature. While loops can run 0 or more times.
 +  * **do-while** loop (bottom-driven conditional loop) - similar to the while loop, only we do the check for loop termination at the bottom of the loop, meaning it runs 1 or more times (a do-while loop is guaranteed to run at least once).
 +
 +===for() loops===
 +A **for()** loop is the most syntactically unique of the loops, so care must be taken to use the proper syntax.
 +
 +With any loop, we need (at least one) looping variable, which the loop will use to analyze whether or not we've met our looping destination, or to perform another iteration.
 +
 +A for loop typically also has a defined starting point, a "keep-looping-while" condition, and a stepping equation.
 +
 +Here's a sample for() loop, in C, which will display the squares of each number, starting at 0, and stepping one at a time, for 8 total iterations:
 +
 +<code c>
 +int i = 0;
 +
 +for (i = 0; i < 8; i++)
 +{
 +    fprintf(stdout, "loop #%d ... %d\n", (i+1), (i*i));
 +}
 +</code>
 +
 +The output of this code, with the help of our loop should be:
 +
 +<cli>
 +loop #1 ... 0
 +loop #2 ... 1
 +loop #3 ... 4
 +loop #4 ... 9
 +loop #5 ... 16
 +loop #6 ... 25
 +loop #7 ... 36
 +loop #8 ... 49
 +</cli>
 +
 +Note how we can use our looping variable (**i**) within mathematical expressions to drive a process along... loops can be of enormous help in this way.
 +
 +And again, we shouldn't look at this as one step-- we need to see there are 8 discrete, distinct steps happening here (when i is 0, when i is 1, when i is 2, ... up until (and including) when i is 7).
 +
 +The loop exits once **i** reaches a value of 8, because our loop determinant condition states as long as **i** is **less than** **8**, continue to loop. Once **i** becomes **8**, our looping condition has been satisfied, and the loop will no longer iterate.
 +
 +The stepping (that third) field is a mathematical expression indicating how we wish for **i** to progress from its starting state (of being equal to 0) to satisfying the loop's iterating condition (no longer being less than 8).
 +
 +**i++** is a shortcut we can use in C; the longhand (and likely more familiar) equivalent is: **i = i + 1**
 +
 +===while() loops===
 +A **while()** loop isn't as specific about starting and stepping values, really only caring about what condition needs to be met in order to exit the loop (keep looping while this condition is true).
 +
 +In actuality, anything we use a for loop for can be expressed as a while loop-- we merely have to ensure we provide the necessary loop variables and progressions within the loop.
 +
 +That same loop above, expressed as a while loop, could look like:
 +
 +<code c>
 +int i = 0;
 +
 +while (i < 8)
 +{
 +    fprintf(stdout, "loop #%d ... %d\n", (i+1), (i*i));
 +    i = i + 1;   // I could have used "i++;" here
 +}
 +</code>
 +
 +The output of this code should be identical, even though we used a different loop to accomplish the task (try them both out and confirm!)
 +
 +**while()** loops, like **for()** loops, will run 0 or more times; if the conditions enabling the loop to occur are not initially met, they will not run... if met, they will continue to iterate until their looping conditions are met.
 +
 +It is possible to introduce a certain kind of **logical error** into your programs using loops-- what is known as an "infinite loop"; this is basically where you erroneously provide incorrect conditions to the particular loop used, allowing it to start running, but never arriving at its conclusion, thereby iterating forever.
 +
 +Another common **logical error** that loops will allow us to encounter will be the "off by one" error-- where the conditions we pose to the loop are incorrect, and the loop runs one magnitude more or less than we had intended. Again, proper debugging of our code will resolve this situation.
 +
 +===do-while loops===
 +The third commonly recognized looping structure in C, the do-while loop is identical to the while() (and therefore also the for()) loop, only it differs in where it checks the looping condition: where **for()** and **while()** are "top-driven" loops (ie the test for loop continuance occurs at the top of the loop, **before** running the code in the loop body), the **do-while** is a "bottom-driven" loop (ie the test for loop continuance occurs at the bottom of the loop).
 +
 +The placement of this test determines the minimal number of times a loop can run.
 +
 +In the case of the for()/while() loops, because the test is at the top- if the looping conditions are not met, the loop may not run at all. It is for this reason why these loops can run "0 or more times"
 +
 +For the do-while loop, because the test occurs at the bottom, the body of the loop (one full iteration) is run before the test is encountered. So even if the conditions for looping are not met, a do-while will run "1 or more times".
 +
 +That may seem like a minor, and possibly annoying, difference, but in nuanced algorithm design, such distinctions can drastically change the layout of your code, potentially being the difference between beautifully elegant-looking solutions and those which appear slightly more hackish. They can BOTH be used to solve the same problems, it is merely the nature of how we choose express the solution that should make one more preferable over the other in any given moment.
 +
 +I encourage you to intentionally try your hand at taking your completed programs and implementing other versions that utilize the other types of loops you haven't utilized. This way, you can get more familiar with how to structure your solutions and express them. You will find you tend to think in a certain way (from experience, we seem to get in the habit of thinking "top-driven", and as we're unsure, we tend to exert far more of a need to control the situation, so we tend to want to use **for** loops for everything-- but practicing the others will free your mind to craft more elegant and efficient solutions; but only if you take the time to play and explore these possibilities).
 +
 +So, expressing that same program in the form of a do-while loop (note the changes from the while):
 +
 +<code c>
 +int i = 0;
 +
 +do
 +{
 +    fprintf(stdout, "loop #%d ... %d\n", (i+1), (i*i));
 +    i = i + 1;  // again, we could just as easily use "i++;" here
 +} while(i < 8);
 +</code>
 +
 +In this case, the 0 or more vs. 1 or more minimal iterations wasn't important; the difference is purely syntactical.
 +
 +With the do-while loop, we start the loop with a **do** statement.
 +
 +Also, the do-while is the only one of our loops which NEEDS a terminating semi-colon (**;**).. please take note of this.
 +
  
 =====Execution===== =====Execution=====
-Your program output should be as follows (given the specified range):+ 
 +====specified quantity==== 
 +Your program output should be as follows (given the specified quantity):
  
 <cli> <cli>
-lab46:~/src/cprog/pnc0$ ./primebrute 90+lab46:~/src/cprog/pnc0$ ./primebrute 24 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 
-  0.000088+  0.000165
 lab46:~/src/cprog/pnc0$  lab46:~/src/cprog/pnc0$ 
 </cli> </cli>
Line 216: Line 382:
 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.
  
 +====invalid lower bound====
 +Here's an example that should generate an error upon running (based on project specifications):
 +
 +<cli>
 +lab46:~/src/cprog/pnc0$ ./primebrute 32 1 0
 +./primebrute: invalid lower bound
 +lab46:~/src/cprog/pnc0$ 
 +</cli>
 +
 +In this case, the program logic should have detected an invalid condition and bailed out before prime computations even began. No timing data is displayed, because exiting should occur even prior to that.
 +
 +====upper bound overriding quantity====
 +As indicated above, there is potential interplay with an active quantity and upper bound values. Here is an example where upper bound overrides quantity, resulting in an early termination (ie upper bound is hit before quantity):
 +
 +<cli>
 +lab46:~/src/cprog/pnc0$ ./primebrute 128 1 7 23
 +7 11 13 17 19 23
 +  0.000125
 +lab46:~/src/cprog/pnc0$ 
 +</cli>
 +
 +Also for fun, I set the lower bound to 7, so you'll see computation starts at 7 (vs. the usual 2).
 =====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.
  
-In order to work, you **MUST** be in the directory where your **primebrute** and **primebruteopt** binaries reside, and must be named as such.+In order to work, you **MUST** be in the directory where your **primebrute** and **primebrk** binaries reside, and must be named as such.
  
-For instance (running on my implementation of prime brute and primebruteopt):+For instance (running on my implementation of prime brute and primebrk):
  
 <cli> <cli>
 lab46:~/src/cprog/pnc0$ primerun lab46:~/src/cprog/pnc0$ primerun
 =================================== ===================================
-    range        brute     bruteopt+      qty        brute          brk
 =================================== ===================================
-      128     0.000177     0.000127 +       32     0.000166     0.000120 
-      256     0.000389     0.000159 +       64     0.000576     0.000201 
-      512     0.001526     0.000358 +      128     0.002860     0.000532 
-     1024     0.005399     0.000964 +      256     0.012316     0.001969 
-     2048     0.019101     0.002809 +      512     0.057345     0.007655 
-     4096     0.070738     0.009380 +     1024     0.268914     0.031949 
-     8192     0.271477     0.032237 +     2048     1.256834     0.136228 
-    16384     1.067010     0.117134 +     4096     5.880069     0.586694 
-    32768     4.193584     0.424562 +     8192   ----------     3.065084 
-    65536   ----------     1.573066 +    16384   ----------   ----------
-   131072   ----------     7.753300 +
-   262144   ----------   ----------+
 =================================== ===================================
- verify:       OK           OK+ verify:        OK           OK
 =================================== ===================================
 lab46:~/src/cprog/pnc0$  lab46:~/src/cprog/pnc0$ 
 </cli> </cli>
  
-For evaluationeach test is run 4 times, and the resulting time is averaged. During development, I have it set to only run each test once.+If the runtime of a particular prime variant exceeds an upper runtime threshold (likely to be set at 2 seconds)it will be omitted from further tests, and a series of dashes will instead appear in the output.
  
-If the runtime of a particular prime variant exceeds an upper threshold (likely to be set at 2 seconds), it will be omitted from further tests, and a series of dashes will instead appear in the output. +If you don't feel like waiting, simply hit **CTRL-c** (maybe a couple of times) and the script will terminate.
- +
-If you don't feel like waiting, simply hit **CTRL-c** and the script will terminate.+
  
 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 260: Line 446:
   * 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:
-    * **primebrute.c** must do the unoptimized brute force method +    * **primebrute.c** must do the raw, unoptimized brute force method 
-    * **primebruteopt.c** must do the brute force with the composite loop **break** +    * **primebrk.c** enhances the brute force method with a smart check to stop checking a number once it fails being prime
   * 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 273: Line 459:
  
 <cli> <cli>
-$ submit cprog pnc0 primebrute.c primebruteopt.c+$ submit cprog pnc0 primebrute.c primebrk.c
 Submitting cprog project "pnc0": Submitting cprog project "pnc0":
     -> primebrute.c(OK)     -> primebrute.c(OK)
-    -> primebruteopt.c(OK)+    -> primebrk.c(OK)
  
 SUCCESSFULLY SUBMITTED SUCCESSFULLY SUBMITTED
Line 287: Line 473:
 <code> <code>
 52:pnc0:final tally of results (52/52) 52:pnc0:final tally of results (52/52)
-*:pnc0:primebrute.c submitted with submit tool [2/2+*:pnc0:primebrute.c performs proper argument checking [4/4
-*:pnc0:primebrute.c no negative compiler messages [4/4]+*:pnc0:primebrute.c no negative compiler messages [2/2]
 *:pnc0:primebrute.c implements only specified algorithm [6/6] *:pnc0:primebrute.c implements only specified algorithm [6/6]
 *:pnc0:primebrute.c adequate indentation and comments [4/4] *:pnc0:primebrute.c adequate indentation and comments [4/4]
 *:pnc0:primebrute.c output conforms to specifications [4/4] *:pnc0:primebrute.c output conforms to specifications [4/4]
 *:pnc0:primebrute.c primerun runtime tests succeed [6/6] *:pnc0:primebrute.c primerun runtime tests succeed [6/6]
-*:pnc0:primebruteopt.c submitted with submit tool [2/2+*:pnc0:primebrk.c performs proper argument checking [4/4
-*:pnc0:primebruteopt.c no negative compiler messages [4/4+*:pnc0:primebrk.c no negative compiler messages [2/2
-*:pnc0:primebruteopt.c implements only specified algorithm [6/6] +*:pnc0:primebrk.c implements only specified algorithm [6/6] 
-*:pnc0:primebruteopt.c adequate indentation and comments [4/4] +*:pnc0:primebrk.c adequate indentation and comments [4/4] 
-*:pnc0:primebruteopt.c output conforms to specifications [4/4] +*:pnc0:primebrk.c output conforms to specifications [4/4] 
-*:pnc0:primebruteopt.c primerun runtime tests succeed [6/6]+*:pnc0:primebrk.c primerun runtime tests succeed [6/6]
 </code> </code>
 +
haas/summer2017/cprog/projects/pnc0.1487279651.txt.gz · Last modified: 2017/02/16 21:14 by 127.0.0.1