str2list:
 Todo Clases Archivos Funciones 'defines'
Clases | Funciones
Referencia del Archivo test_str2list.cpp

Programa de prueba para str2list() y str2matrix(). Más...

#include "BUnit.h"
#include <iostream>
#include "str2list.h"
#include <iomanip>
#include <iterator>

Ir al código fuente de este archivo.

Clases

class  test_str2list
 Prueba str2list() y str2matrix(). Más...
 

Funciones

template<class MAT >
void print (const char *name, MAT &M)
 Imprime por filas el valor de "M".
 
void print (const std::list< std::string > &L)
 Prints the contents in L.
 
void print_list (const char *str)
 Uses str2list() to print list values.
 
template<class atype , unsigned Nrows, unsigned Ncols>
void printMatrix (atype MATRIX[Nrows][Ncols], unsigned w=3)
 Prints by rows in std::cout the contents of MATRIX[][].
 
template<class atype , unsigned Nrows, unsigned Ncols>
void setValue (atype MATRIX[Nrows][Ncols], atype val)
 Stores all zeroes in MATRIX[][].
 
template<class atype , unsigned Nrows, unsigned Ncols>
void setZero (atype MATRIX[Nrows][Ncols])
 Stores all zeroes in MATRIX[][].
 
template<class atype , unsigned Nrows, unsigned Ncols>
void setRectangularRow (atype MATRIX[Nrows][Ncols])
 Set the values in MATRIX[][] as consecutive numbers from 10.
 
void do_print_list ()
 Invoca print_list() de muchas formas diferentes.
 
int main ()
 Programa principal.
 

Descripción detallada

Programa de prueba para str2list() y str2matrix().

Autor
Adolfo Di Mare adolf.nosp@m.o@di.nosp@m.-mare.nosp@m..com
Fecha
2009

Definición en el archivo test_str2list.cpp.

Documentación de las funciones

template<class MAT >
void print ( const char *  name,
MAT &  M 
)

Imprime por filas el valor de "M".

Definición en la línea 410 del archivo test_str2list.cpp.

void print ( const std::list< std::string > &  L)

Prints the contents in L.

Definición en la línea 423 del archivo test_str2list.cpp.

void print_list ( const char *  str)

Uses str2list() to print list values.

Definición en la línea 432 del archivo test_str2list.cpp.

template<class atype , unsigned Nrows, unsigned Ncols>
void printMatrix ( atype  MATRIX[Nrows][Ncols],
unsigned  w = 3 
)

Prints by rows in std::cout the contents of MATRIX[][].

Uses w chars to print each value.

Definición en la línea 460 del archivo test_str2list.cpp.

template<class atype , unsigned Nrows, unsigned Ncols>
void setValue ( atype  MATRIX[Nrows][Ncols],
atype  val 
)

Stores all zeroes in MATRIX[][].

Definición en la línea 471 del archivo test_str2list.cpp.

template<class atype , unsigned Nrows, unsigned Ncols>
void setZero ( atype  MATRIX[Nrows][Ncols])

Stores all zeroes in MATRIX[][].

Definición en la línea 481 del archivo test_str2list.cpp.

template<class atype , unsigned Nrows, unsigned Ncols>
void setRectangularRow ( atype  MATRIX[Nrows][Ncols])

Set the values in MATRIX[][] as consecutive numbers from 10.

Stores values by rows.

Definición en la línea 488 del archivo test_str2list.cpp.

void do_print_list ( )

Invoca print_list() de muchas formas diferentes.

Definición en la línea 498 del archivo test_str2list.cpp.

int main ( )

Programa principal.

Definición en la línea 834 del archivo test_str2list.cpp.