libflame  revision_anchor
Functions
FLA_Apply_pivots_lt.c File Reference

(r)

Functions

FLA_Error FLA_Apply_pivots_lt (FLA_Obj p, FLA_Obj A, fla_appiv_t *cntl)
 

Function Documentation

◆ FLA_Apply_pivots_lt()

FLA_Error FLA_Apply_pivots_lt ( FLA_Obj  p,
FLA_Obj  A,
fla_appiv_t cntl 
)

References FLA_Apply_pivots_lt_opt_var1().

Referenced by FLA_Apply_pivots_internal().

14 {
15  FLA_Error r_val = FLA_SUCCESS;
16 
17  if ( FLA_Cntl_variant( cntl ) == FLA_UNBLOCKED_EXTERN )
18  {
19  FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
20  }
21  else if ( FLA_Cntl_variant( cntl ) == FLA_UNB_OPT_VARIANT1 )
22  {
23  r_val = FLA_Apply_pivots_lt_opt_var1( p, A );
24  }
25  else if ( FLA_Cntl_variant( cntl ) == FLA_BLOCKED_VARIANT1 )
26  {
27  FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
28  }
29  else if ( FLA_Cntl_variant( cntl ) == FLA_BLOCKED_VARIANT2 )
30  {
31  FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
32  }
33  else
34  {
35  FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
36  }
37 
38  return r_val;
39 }
int FLA_Error
Definition: FLA_type_defs.h:47
FLA_Error FLA_Apply_pivots_lt_opt_var1(FLA_Obj p, FLA_Obj A)
Definition: FLA_Apply_pivots_lt_opt_var1.c:13