MOOCHO (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RTOp_TOp_correct_multipliers.c
Go to the documentation of this file.
1 /*
2 // @HEADER
3 // ***********************************************************************
4 //
5 // Moocho: Multi-functional Object-Oriented arCHitecture for Optimization
6 // Copyright (2003) Sandia Corporation
7 //
8 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
9 // license for use of this work by or on behalf of the U.S. Government.
10 //
11 // Redistribution and use in source and binary forms, with or without
12 // modification, are permitted provided that the following conditions are
13 // met:
14 //
15 // 1. Redistributions of source code must retain the above copyright
16 // notice, this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright
19 // notice, this list of conditions and the following disclaimer in the
20 // documentation and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of the Corporation nor the names of the
23 // contributors may be used to endorse or promote products derived from
24 // this software without specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 //
38 // Questions? Contact Roscoe A. Bartlett (rabartl@sandia.gov)
39 //
40 // ***********************************************************************
41 // @HEADER
42 */
43 /* ///////////////////////////////////////////// */
44 /* RTOp_TOp_Correct_Multipliers.c */
45 
46 /* */
47 /* Note: This file was created automatically by 'new_rtop.pl' */
48 /* on 7/1/2002 at 18:11 */
49 /* */
50 
51 #define max(a,b) ( (a) > (b) ? (a) : (b) )
52 #define min(a,b) ( (a) < (b) ? (a) : (b) )
53 
55 #include "RTOp_obj_value_index_vtbl.h" /* vtbl for operator object instance data */
56 
57 
58 
59 /* Implementation functions for RTOp_RTOp */
60 
62  const struct RTOp_RTOp_vtbl_t* vtbl, const void* obj_data
63  , const int num_vecs, const struct RTOp_SubVector vecs[]
64  , const int num_targ_vecs, const struct RTOp_MutableSubVector targ_vecs[]
65  , RTOp_ReductTarget reduct_obj )
66 {
67  /* */
68  /* Declare local variables */
69  /* */
70 
71  /* Access to the operator object instance data */
72  struct RTOp_value_index_type *data_cntr = (struct RTOp_value_index_type*)obj_data;
73  RTOp_value_type *inf_bound_limit = &data_cntr->value;
74  RTOp_index_type *lower_or_upper = &data_cntr->index;
75  /* Vector data */
76  RTOp_index_type sub_dim;
77  /* z0 */
78  RTOp_value_type *z0_val;
79  ptrdiff_t z0_val_s;
80  /* v0 */
81  const RTOp_value_type *v0_val;
82  ptrdiff_t v0_val_s;
83 
84  /* Automatic temporary variables */
85  register RTOp_index_type k;
86 
87  /* */
88  /* Validate the input */
89  /* */
90  if( num_vecs != 1 || ( num_vecs && vecs == NULL ) )
92  if( num_targ_vecs != 1 || ( num_targ_vecs && targ_vecs == NULL ) )
94  if( /* Validate sub_dim */
95  targ_vecs[0].sub_dim != vecs[0].sub_dim
96  )
98  assert(obj_data);
99 
100 
101  /* */
102  /* Get pointers to data */
103  /* */
104  sub_dim = vecs[0].sub_dim;
105  /* z0 */
106  z0_val = targ_vecs[0].values;
107  z0_val_s = targ_vecs[0].values_stride;
108  /* v0 */
109  v0_val = vecs[0].values;
110  v0_val_s = vecs[0].values_stride;
111 
112 
113  /* */
114  /* Apply the operator: */
115  /* */
116  for( k = 0; k < sub_dim; ++k, v0_val += v0_val_s, z0_val += z0_val_s )
117  {
118  /* Element-wise transformation */
119  if ( (*z0_val) < 0 )
120  {
121  /* should only get here if the value is slightly negative */
122  assert(*z0_val > -1e-50);
123  (*z0_val) = 0.0;
124  }
125  else if ( (*lower_or_upper) == 0 )
126  {
127  (*z0_val) = ((*v0_val) <= (*inf_bound_limit)) ? 0.0 : (*z0_val);
128  }
129  else
130  {
131  (*z0_val) = ((*v0_val) >= (*inf_bound_limit)) ? 0.0 : (*z0_val);
132  }
133  }
134 
135  return 0; /* success? */
136 }
137 
138 /* Virtual function table */
140 {
143  ,"TOp_Correct_Multipliers"
144  ,NULL
146  ,NULL
147  ,NULL
148 };
149 
150 /* Class specific functions */
151 
152 int RTOp_TOp_Correct_Multipliers_construct( RTOp_value_type inf_bound_limit, RTOp_index_type lower_or_upper, struct RTOp_RTOp* op )
153 {
154 #ifdef RTOp_DEBUG
155  assert(op);
156 #endif
157  op->obj_data = NULL;
159  op->vtbl->obj_data_vtbl->obj_create(NULL,NULL,&op->obj_data);
160  return RTOp_TOp_Correct_Multipliers_init(inf_bound_limit,lower_or_upper,op);
161 }
162 
164 {
165  op->vtbl->obj_data_vtbl->obj_free(NULL,NULL,&op->obj_data);
166  op->obj_data = NULL;
167  op->vtbl = NULL;
168  return 0;
169 }
170 
171 int RTOp_TOp_Correct_Multipliers_init( RTOp_value_type inf_bound_limit, RTOp_index_type lower_or_upper, struct RTOp_RTOp* op )
172 {
173  struct RTOp_value_index_type *ptr_data_cntr = (struct RTOp_value_index_type*)op->obj_data;
174  RTOp_value_type *ptr_inf_bound_limit = &ptr_data_cntr->value;
175  RTOp_index_type *ptr_lower_or_upper = &ptr_data_cntr->index;
176  *ptr_inf_bound_limit = inf_bound_limit;
177  *ptr_lower_or_upper = lower_or_upper;
178  return 0;
179 }
180 
ptrdiff_t values_stride
Definition: RTOp.h:305
double RTOp_value_type
Definition: RTOp.h:69
ptrdiff_t values_stride
Definition: RTOp.h:338
void * RTOp_ReductTarget
Definition: RTOp.h:191
const struct RTOp_obj_type_vtbl_t RTOp_obj_value_index_vtbl
int(* obj_create)(const struct RTOp_obj_type_vtbl_t *vtbl, const void *instance_data, void **obj)
Definition: RTOp.h:941
const struct RTOp_obj_type_vtbl_t * obj_data_vtbl
Definition: RTOp.h:819
int RTOp_TOp_Correct_Multipliers_destroy(struct RTOp_RTOp *op)
#define RTOp_ERR_INCOMPATIBLE_VECS
Definition: RTOp.h:270
const RTOp_value_type * values
Definition: RTOp.h:303
static int RTOp_TOp_Correct_Multipliers_apply_op(const struct RTOp_RTOp_vtbl_t *vtbl, const void *obj_data, const int num_vecs, const struct RTOp_SubVector vecs[], const int num_targ_vecs, const struct RTOp_MutableSubVector targ_vecs[], RTOp_ReductTarget reduct_obj)
#define RTOp_ERR_INVALID_NUM_VECS
Definition: RTOp.h:266
int(* obj_free)(const struct RTOp_obj_type_vtbl_t *vtbl, const void *instance_data, void **obj)
Definition: RTOp.h:1019
RTOp_value_type * values
Definition: RTOp.h:336
const struct RTOp_obj_type_vtbl_t RTOp_obj_null_vtbl
const struct RTOp_RTOp_vtbl_t RTOp_TOp_Correct_Multipliers_vtbl
void * obj_data
Definition: RTOp.h:800
const struct RTOp_RTOp_vtbl_t * vtbl
Definition: RTOp.h:802
int RTOp_TOp_Correct_Multipliers_construct(RTOp_value_type inf_bound_limit, RTOp_index_type lower_or_upper, struct RTOp_RTOp *op)
int RTOp_TOp_Correct_Multipliers_init(RTOp_value_type inf_bound_limit, RTOp_index_type lower_or_upper, struct RTOp_RTOp *op)
RTOp_index_type sub_dim
Definition: RTOp.h:301
#define RTOp_ERR_INVALID_NUM_TARG_VECS
Definition: RTOp.h:268
Teuchos_Ordinal RTOp_index_type
Definition: RTOp.h:68