Project 6: Stats Templates

Making the stats functions generic

Educational Objectives: After completing this assignment the student should have the following knowledge, ability, and skills:

Operational Objectives: Implement and test the function templates Mean, Median, and InsertionSort.

Deliverables: Two files: stats.t and log.txt

Assessment Rubric

build 10 test executables             [1 pt each]:  xx
40 tests [1 point each]:
 stattestA.x data1, data2, data3, data4   x
 stattestB.x data1, data2, data3, data4   x
 stattestC.x data1, data2, data3, data4   x
 stattestD.x data1, data2, data3, data4   x
 stattestE.x data1, data2, data3, data4   x
 stattestF.x data1, data2, data3, data4   x
 stattestG.x data1, data2, data3, data4   x
 stattestH.x data1, data2, data3, data4   x
 stattestI.x data1, data2, data3, data4   x
 stattestJ.x data1, data2, data3, data4   x
total for tests                           [0..40]:  xx
log.txt                                 [-20..0]]: ( x)
project specs                           [-20..0]]: ( x)
code quality                            [-20..0]]: ( x)
dated submission deduction            [2 pts per]: ( x)
                                                   ---
total                                     [0..50]:  xx

Notes: 1. input files may vary over time and from those distributed.
       2. selection of 10 tests may vary among the 21 choices

Code quality includes: 
  - conformance to assignment requirements and specifications
  - conformance to coding standards [see course organizer]
  - engineering and design, including appropriateness of name choices
  - readability

Background: See lecture notes Chapter 12. Templates.

Procedural Requirements

  1. Copy the following files from the course library:

    proj6/stattest.cpp     # client program testing Stats Templates
    proj6/makefile         # builds stattest1.x, ... , stattest21.x
    proj6/deliverables.sh  # submission configuration file
    scripts/submit.sh      # submission script
    

  2. Begin a log file named log.txt. This should be an ascii text file in cop3330/proj6 with the following header:

    log.txt # log file for stats project
    <date file created>
    <your name>
    <your CS username>
    

    This file should document all work done by date and time, including all testing and test results.

  3. Create the file stats.t defining and implementing function templates for Mean, Median, and InsertionSort. Be sure to make log entries for all work.

  4. READ the test program LIB/stattest.cpp. Note that stattest.cpp is set up so that you can choose any one of 21 different numerical types by uncommenting one of 21 possible typedef statements defining NumberType. Start your testing by creating 21 different tests stattest1.cpp, ... , stattest21.cpp, where stattestX.cpp uses the number type X.

    This is a good exercise in using basic unix commands and Emacs. Do this work yourself, on linprog. Be sure to keep your log up to date.

  5. READ the supplied LIB/makefile. Note that makefile is set up so that you can

    1. Build any specific stattestX.x target [X = 1,2,...,21]
    2. Build all stattest1.x ... stattest21.x targets
    3. Erase output data files created by runtests.sh

  6. Test your implementation using the supplied client program stattest.cpp. There should be 21 versions of stattest.cpp, one for each numerical type listed in the program header documentation, named as in the distributed makefile. Again be sure to make log entries appropriately.

  7. Turn in the files stats.t and log.txt. using the submit script system.

    Warning: Submit scripts do not work on the program and linprog servers. Use shell.cs.fsu.edu to submit projects. If you do not receive two confirmations, the second with the contents of your project, there has been a malfunction.

Code Requirements and Specifications

  1. In file stats.t define and implement function templates with these prototypes:

    template < typename T >
    long double Mean (const std::vector<T>& v);  // returns mean of elements of v
    
    template < typename T >
    long double Median (std::vector<T>& v);  // returns median of elements of v
    
    template < typename T >
    void InsertionSort (std::vector<T>& v);  // implements insertion_sort algorithm
    

    The behavior and semantics are similar to the non-template functions from Project 2, using vector instead of array to contain data.

  2. Be sure your code conforms to the C++ Code Standards (available also through the Course Organizer).

  3. Be sure that you have tested your code for syntax errors with the supplied test harness as well as your own test program, using the supplied makefile with warning flags set. All warnings should be eliminated.

  4. Be sure that you have tested your code for both logic errors with the supplied test harness as well as your own test program.

  5. Be sure that you have tested your code for genericity using all 21 numerical types available in stattest.cpp.

Hints