AltairIpcGetVectorList

Reads the list of vector data sent to the external program.

Syntax

int AltairIpcGetVectorList(AltairIpcVectorList *vec_list)
typedef struct
{
    /*--- Number of vectors in 'vector' list ---*/
    long num_vectors;

    /*--- Number of items in each vector in 'vector' list ---*/
    long *vec_cnt;

    /*--- Vector list, arranged as a pointer list ---*/
    double **vec_val;
} AltairIpcVectorList;

Inputs

num_vectors
Number of vectors in vector list
vec_cnt
Array containing number of items in each vector in vector list
vec_val
Array of pointers to the vectors in the vector list.

Comments

AltairIpcGetVectorList returns an integer. If the return value is ALTAIR_IPC_SUCCESS the function succeeded. Otherwise it failed. Check Error Handling for specifics.