Fixed bug reporting the significance of paired value t-test.
[pspp-builds.git] / src / language / tests / datasheet-test.c
index 1b2cf4290e8b8b584ddcbb312352f8a21db303d1..67f68377e14ed987fc42671ba55989ef4510aee5 100644 (file)
@@ -1,20 +1,18 @@
-/* PSPP - computes sample statistics.
+/* PSPP - a program for statistical analysis.
    Copyright (C) 2007 Free Software Foundation, Inc.
 
-   This program is free software; you can redistribute it and/or
-   modify it under the terms of the GNU General Public License as
-   published by the Free Software Foundation; either version 2 of the
-   License, or (at your option) any later version.
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation, either version 3 of the License, or
+   (at your option) any later version.
 
-   This program is distributed in the hope that it will be useful, but
-   WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   General Public License for more details.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA. */
+   along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
 #include <config.h>
 
@@ -41,7 +39,7 @@ static bool parse_coordinates (struct lexer *, int *rows, int *cols);
    optionally followed by any of the common model checker option
    specifications (see check-model.q). */
 int
-cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED) 
+cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED)
 {
   struct datasheet_test_params params;
   bool ok;
@@ -51,7 +49,7 @@ cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED)
   params.backing_rows = 0;
   params.backing_cols = 0;
 
-  for (;;) 
+  for (;;)
     {
       if (lex_match_id (lexer, "MAX"))
         {
@@ -68,7 +66,7 @@ cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED)
         break;
       lex_match (lexer, '/');
     }
-  
+
   ok = check_model (lexer, datasheet_test, &params);
   printf ("Datasheet test max(%d,%d) backing(%d,%d) %s.\n",
           params.max_rows, params.max_cols,
@@ -81,7 +79,7 @@ cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED)
    where all of the delimiters are optional, into *ROWS and
    *COLS.  Returns true if successful, false on parse failure. */
 static bool
-parse_coordinates (struct lexer *lexer, int *rows, int *cols) 
+parse_coordinates (struct lexer *lexer, int *rows, int *cols)
 {
   lex_match (lexer, '=');
   lex_match (lexer, '(');
@@ -97,7 +95,7 @@ parse_coordinates (struct lexer *lexer, int *rows, int *cols)
     return false;
   *cols = lex_integer (lexer);
   lex_get (lexer);
-  
+
   lex_match (lexer, ')');
   return true;
 }