User Tools

Site Tools


haas:spring2017:unix:projects:upf0

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:spring2017:unix:projects:upf0 [2017/02/25 19:15] – [upf0steps] wedgehaas:spring2017:unix:projects:upf0 [2017/02/27 18:27] (current) – [upf0steps] wedge
Line 23: Line 23:
 This week's project has 2 points of origin. This week's project has 2 points of origin.
  
-First, in the **upf0/** sub-directory of the UNIX Public Directory, under a directory by the name of your username, there will be two files:+First, in the **upf0/** sub-directory of the UNIX Public Directory, you will find the following archive:
  
-  * **TASK** 
   * **numbers.tgz**   * **numbers.tgz**
  
-Copy these into your project directory.+Then, under a directory by the name of your username within that same directory, there will be another file: 
 + 
 +  * **TASK** 
 + 
 +Copy both of these files into your project directory.
  
 The **TASK** file will contain the particular command-line equations you have to perform, along with their stated constraints. The **TASK** file will contain the particular command-line equations you have to perform, along with their stated constraints.
  
-The **numbers.tgz** file needs to be extracted, compiled, and installed; there are README and INSTALL files located within the archive with further instructions on how to do this. +The **numbers.tgz** file needs to be extracted, compiled, and installed; there is a README file located within the archive with further instructions on how to do this. 
  
 Next, you will want to grab the latest version of the **pipemath** suite from the following URL: Next, you will want to grab the latest version of the **pipemath** suite from the following URL:
  
-  * url to pipemath+  * https://lab46.g7n.org/~wedge/projects/pipemath/
  
-You will want to use a tool like **wget(1)** or **curl(1)** to non-interactively download it onto your lab46 account, and similarly extract, compile, and install that (check its own README/INSTALL files).+You will want to use a tool like **wget(1)** or **curl(1)** to non-interactively download it onto your lab46 account, and similarly extract, compile, and install that (check its own README file).
  
 There may be multiple versions of **pipemath** available at the download link. Unless you have specific reason otherwise (for this project, you do not), you want to go for the latest version, which will be reflected by the most recent datestamp encoded in the file's name. There may be multiple versions of **pipemath** available at the download link. Unless you have specific reason otherwise (for this project, you do not), you want to go for the latest version, which will be reflected by the most recent datestamp encoded in the file's name.
Line 61: Line 64:
  
 ====pipemath suite==== ====pipemath suite====
-The pipemath suite is a collection of command-line tools that perform various basic math operations you may fine useful for this project. The tools include:+The pipemath suite is a collection of command-line tools that perform various basic math operations you may find useful for this project. The tools include:
  
   * **plus** - addition   * **plus** - addition
Line 82: Line 85:
 In the **TASK** file, you will be given a set of tasks you need to construct command-lines for to solve, using the tools provided to you in both the **numbers** and **pipemath** suites. You will also want to make use of pipes and command expansions in your solutions. In the **TASK** file, you will be given a set of tasks you need to construct command-lines for to solve, using the tools provided to you in both the **numbers** and **pipemath** suites. You will also want to make use of pipes and command expansions in your solutions.
  
-There will also be both numberoperation, minimum pipes, and maximum pipes constraints listed for each problem, which you will need to abide by in order to receive full credit. A <nowiki>*</nowiki> in any field indicates you are free to use any and all in that category.+There will also be resultnumbers, operations, minimum pipes, and maximum pipes constraints listed for each problem, which you will need to abide by in order to receive full credit. 
 + 
 +The potential constraints are as follows: 
 + 
 +  **ANY:** no restrictions, any in applicable category can be used 
 +  * **ONLY:** you are restricted to only those listed 
 +  * **WITH_LIMITS:** usually providing specific restrictions within an **ANY** domain 
 +  * **EXCEPT:** you are explicitly not allowed to use the listed; usually restricting an existing **ANY** domain 
 +  
 +There may also be quantity limits on how many times you can use each number or operation. If so, such will be shown in parenthesis following the item in question.
  
-There may be quantity limits on how many times you can use each number or operation. If sosuch will be shown in parenthesis following the item in question.+Alsono cheating with idle "filler" operations, like "plus 0 | plus 0 | plus 0" to rack up needed pipe counts.
  
 As an example, take the following (formatted is it would appear in your **TASK** file): As an example, take the following (formatted is it would appear in your **TASK** file):
Line 91: Line 103:
 task: 0 task: 0
 result: 4 result: 4
-numbers: three(2), five, seven, nine +numbers: ONLY(three(2), five, seven, nine) 
-operations: *+operations: ANY
 min_pipes: 2 min_pipes: 2
-max_pipes: *+max_pipes: ANY
 </code> </code>
  
Line 135: Line 147:
 You will once again be creating a steps file that can automate your project.  You will once again be creating a steps file that can automate your project. 
  
-As in previous projects, **upf0steps** will contain the steps you took from the point of copying the numbers suite up until the submit step (hint: just run the task#.cli scripts within the steps script).+As in previous projects, **upf0steps** will contain the steps you took from the point of copying the numbers suite and downloading the pipemath suite up until the submit step (hint: just run the task#.cli scripts within the steps script)
 +  * To clarify: YES, I want to see steps creating a project directory, copying and downloading files in question, extracting, compiling, installing, and then of course running each individual task#.cli script.
  
 There are some additional constraints you need to keep in mind: There are some additional constraints you need to keep in mind:
Line 147: Line 160:
         * note that the task#.cli output appears on the SAME line as the "Task X result is:" text, and there is a single space separating it from the colon.         * note that the task#.cli output appears on the SAME line as the "Task X result is:" text, and there is a single space separating it from the colon.
  
-For example, a sample output of your **upf0steps** script should appear like follows (but your # values will of course be different based on your individual **TASKS** file):+For example, a sample output of your **upf0steps** script should appear like follows (but your # values will of course be different based on your individual **TASK** file):
  
 <cli> <cli>
Line 154: Line 167:
 Task 1 result is: 27 Task 1 result is: 27
 Task 2 result is: 32 Task 2 result is: 32
 +Task 3 result is: 7
 Task 4 result is: -4 Task 4 result is: -4
 Task 5 result is: 57 Task 5 result is: 57
Line 178: Line 192:
 </cli> </cli>
  
-You should get some sort of confirmation indicating successful submission (actually, two) if all went according to plan. If not, check for typos and or locational mismatches.+You should get some sort of confirmation indicating successful submission  if all went according to plan. If not, check for typos and or locational mismatches.
  
 I'll be looking for the following: I'll be looking for the following:
Line 190: Line 204:
 *:upf0:task0.cli produces correct result [2/2] *:upf0:task0.cli produces correct result [2/2]
 *:upf0:task0.cli uses specified numbers by quantity [2/2] *:upf0:task0.cli uses specified numbers by quantity [2/2]
-*:upf0:task0.cli uses specified operations [2/2]+*:upf0:task0.cli uses specified operations by quantity [2/2]
 *:upf0:task0.cli solution within min_pipes, max_pipes [2/2] *:upf0:task0.cli solution within min_pipes, max_pipes [2/2]
 *:upf0:task1.cli produces correct result [2/2] *:upf0:task1.cli produces correct result [2/2]
 *:upf0:task1.cli uses specified numbers by quantity [2/2] *:upf0:task1.cli uses specified numbers by quantity [2/2]
-*:upf0:task1.cli uses specified operations [2/2]+*:upf0:task1.cli uses specified operations by quantity [2/2]
 *:upf0:task1.cli solution within min_pipes, max_pipes [2/2] *:upf0:task1.cli solution within min_pipes, max_pipes [2/2]
 *:upf0:task2.cli produces correct result [2/2] *:upf0:task2.cli produces correct result [2/2]
 *:upf0:task2.cli uses specified numbers by quantity [2/2] *:upf0:task2.cli uses specified numbers by quantity [2/2]
-*:upf0:task2.cli uses specified operations [2/2]+*:upf0:task2.cli uses specified operations by quantity [2/2]
 *:upf0:task2.cli solution within min_pipes, max_pipes [2/2] *:upf0:task2.cli solution within min_pipes, max_pipes [2/2]
 *:upf0:task3.cli produces correct result [2/2] *:upf0:task3.cli produces correct result [2/2]
 *:upf0:task3.cli uses specified numbers by quantity [2/2] *:upf0:task3.cli uses specified numbers by quantity [2/2]
-*:upf0:task3.cli uses specified operations [2/2]+*:upf0:task3.cli uses specified operations by quantity [2/2]
 *:upf0:task3.cli solution within min_pipes, max_pipes [2/2] *:upf0:task3.cli solution within min_pipes, max_pipes [2/2]
 *:upf0:task4.cli produces correct result [2/2] *:upf0:task4.cli produces correct result [2/2]
 *:upf0:task4.cli uses specified numbers by quantity [2/2] *:upf0:task4.cli uses specified numbers by quantity [2/2]
-*:upf0:task4.cli uses specified operations [2/2]+*:upf0:task4.cli uses specified operations by quantity [2/2]
 *:upf0:task4.cli solution within min_pipes, max_pipes [2/2] *:upf0:task4.cli solution within min_pipes, max_pipes [2/2]
 *:upf0:task5.cli produces correct result [2/2] *:upf0:task5.cli produces correct result [2/2]
 *:upf0:task5.cli uses specified numbers by quantity [2/2] *:upf0:task5.cli uses specified numbers by quantity [2/2]
-*:upf0:task5.cli uses specified operations [2/2]+*:upf0:task5.cli uses specified operations by quantity [2/2]
 *:upf0:task5.cli solution within min_pipes, max_pipes [2/2] *:upf0:task5.cli solution within min_pipes, max_pipes [2/2]
 *:upf0:task6.cli produces correct result [2/2] *:upf0:task6.cli produces correct result [2/2]
 *:upf0:task6.cli uses specified numbers by quantity [2/2] *:upf0:task6.cli uses specified numbers by quantity [2/2]
-*:upf0:task6.cli uses specified operations [2/2]+*:upf0:task6.cli uses specified operations by quantity [2/2]
 *:upf0:task6.cli solution within min_pipes, max_pipes [2/2] *:upf0:task6.cli solution within min_pipes, max_pipes [2/2]
 *:upf0:task7.cli produces correct result [2/2] *:upf0:task7.cli produces correct result [2/2]
 *:upf0:task7.cli uses specified numbers by quantity [2/2] *:upf0:task7.cli uses specified numbers by quantity [2/2]
-*:upf0:task7.cli uses specified operations [2/2]+*:upf0:task7.cli uses specified operations by quantity [2/2]
 *:upf0:task7.cli solution within min_pipes, max_pipes [2/2] *:upf0:task7.cli solution within min_pipes, max_pipes [2/2]
 </code> </code>
haas/spring2017/unix/projects/upf0.1488050139.txt.gz · Last modified: 2017/02/25 19:15 by wedge