Пример #1
0
int main ( void )

/******************************************************************************/
/*
  Purpose:

    MAIN is the main program for SGMGA_POINT_PRB.

  Discussion:

    SGMGA_POINT_PRB tests the SGMGA_POINT routines.

  Licensing:

    This code is distributed under the GNU LGPL license.

  Modified:

    27 November 2009

  Author:

    John Burkardt
*/
{
  timestamp ( );
  printf ( "\n" );
  printf ( "SGMGA_POINT_PRB\n" );
  printf ( "  C version\n" );
  printf ( "  Test the SGMGA_POINT function.\n" );

  sgmga_point_tests ( );
/*
  Terminate.
*/
  printf ( "\n" );
  printf ( "SGMGA_PRB\n" );
  printf ( "  Normal end of execution.\n" );
  printf ( "\n" );
  timestamp ( );
  
  return 0;
}
Пример #2
0
int main ( )

//****************************************************************************80
//
//  Purpose:
//
//    MAIN is the main program for SGMGA_POINT_PRB.
//
//  Discussion:
//
//    SGMGA_POINT_PRB tests the SGMGA_POINT routines.
//
//  Licensing:
//
//    This code is distributed under the GNU LGPL license.
//
//  Modified:
//
//    27 November 2009
//
//  Author:
//
//    John Burkardt
//
{
  webbur::timestamp ( );
  std::cout << "\n";
  std::cout << "SGMGA_POINT_PRB\n";
  std::cout << "  C++ version\n";
  std::cout << "  Test the SGMGA_POINT function.\n";

  sgmga_point_tests ( );

  std::cout << "\n";
  std::cout << "SGMGA_PRB\n";
  std::cout << "  Normal end of execution.\n";

  std::cout << "\n";
  webbur::timestamp ( );
  
  return 0;
}