22 FLA_Apply_QUD_UT_inc_internal_check( side, trans, direct, storev, T, W, R, U, C, V, D, cntl );
24 if ( side == FLA_LEFT )
26 if ( trans == FLA_NO_TRANSPOSE )
28 if ( direct == FLA_FORWARD )
30 if ( storev == FLA_COLUMNWISE )
31 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
32 else if ( storev == FLA_ROWWISE )
33 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
35 else if ( direct == FLA_BACKWARD )
37 if ( storev == FLA_COLUMNWISE )
38 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
39 else if ( storev == FLA_ROWWISE )
40 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
43 else if ( trans == FLA_TRANSPOSE || trans == FLA_CONJ_TRANSPOSE )
45 if ( direct == FLA_FORWARD )
47 if ( storev == FLA_COLUMNWISE )
49 else if ( storev == FLA_ROWWISE )
50 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
52 else if ( direct == FLA_BACKWARD )
54 if ( storev == FLA_COLUMNWISE )
55 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
56 else if ( storev == FLA_ROWWISE )
57 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
61 else if ( side == FLA_RIGHT )
63 if ( trans == FLA_NO_TRANSPOSE )
65 if ( direct == FLA_FORWARD )
67 if ( storev == FLA_COLUMNWISE )
68 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
69 else if ( storev == FLA_ROWWISE )
70 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
72 else if ( direct == FLA_BACKWARD )
74 if ( storev == FLA_COLUMNWISE )
75 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
76 else if ( storev == FLA_ROWWISE )
77 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
80 else if ( trans == FLA_TRANSPOSE || trans == FLA_CONJ_TRANSPOSE )
82 if ( direct == FLA_FORWARD )
84 if ( storev == FLA_COLUMNWISE )
85 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
86 else if ( storev == FLA_ROWWISE )
87 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
89 else if ( direct == FLA_BACKWARD )
91 if ( storev == FLA_COLUMNWISE )
92 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
93 else if ( storev == FLA_ROWWISE )
94 FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
int FLA_Error
Definition: FLA_type_defs.h:47
FLA_Error FLA_Apply_QUD_UT_inc_lhfc(FLA_Obj T, FLA_Obj W, FLA_Obj R, FLA_Obj U, FLA_Obj C, FLA_Obj V, FLA_Obj D, fla_apqudutinc_t *cntl)
Definition: FLA_Apply_QUD_UT_inc_lhfc.c:13
unsigned int FLA_Check_error_level(void)
Definition: FLA_Check.c:18
FLA_Error FLA_Apply_QUD_UT_inc_internal_check(FLA_Side side, FLA_Trans trans, FLA_Direct direct, FLA_Store storev, FLA_Obj T, FLA_Obj W, FLA_Obj R, FLA_Obj U, FLA_Obj C, FLA_Obj V, FLA_Obj D, fla_apqudutinc_t *cntl)
Definition: FLA_Apply_QUD_UT_inc_internal_check.c:13