MOOCHO (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RTOp_ROp_fraction_to_zero_boundary.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 /* ///////////////////////////////////////////// */
45 /* RTOp_ROp_fraction_to_zero_boundary.c */
46 
47 /* */
48 /* Note: This file was created automatically by 'new_rtop.pl' */
49 /* on 7/8/2002 at 19:19 */
50 /* */
51 
52 #define max(a,b) ( (a) > (b) ? (a) : (b) )
53 #define min(a,b) ( (a) < (b) ? (a) : (b) )
54 
55 
57 #include "RTOp_obj_value_vtbl.h" /* vtbl for operator object instance data */
58 #include "RTOp_reduct_min_value.h" /* Reduction of intermediate reduction objects */
59 
60 
61 
62 /* Implementation functions for RTOp_RTOp */
63 
65  const struct RTOp_RTOp_vtbl_t* vtbl, const void* obj_data
66  , const int num_vecs, const struct RTOp_SubVector vecs[]
67  , const int num_targ_vecs, const struct RTOp_MutableSubVector targ_vecs[]
68  , RTOp_ReductTarget reduct_obj )
69 {
70  /* */
71  /* Declare local variables */
72  /* */
73 
74  /* Access to the operator object instance data */
75  RTOp_value_type *tau = (RTOp_value_type*)obj_data;
76  /* Access to the reduction object data */
77  RTOp_value_type *alpha_max = (RTOp_value_type*)reduct_obj;
78  /* Vector data */
79  RTOp_index_type sub_dim;
80  /* v0 */
81  const RTOp_value_type *v0_val;
82  ptrdiff_t v0_val_s;
83  /* v1 */
84  const RTOp_value_type *v1_val;
85  ptrdiff_t v1_val_s;
86 
87  /* Automatic temporary variables */
88  register RTOp_index_type k;
89  /* Temporary element-wise reduction object */
90  RTOp_value_type alpha_max_ith;
91 
92  /* */
93  /* Validate the input */
94  /* */
95  if( num_vecs != 2 || ( num_vecs && vecs == NULL ) )
97  if( num_targ_vecs != 0 || ( num_targ_vecs && targ_vecs == NULL ) )
99  if( /* Validate sub_dim */
100  vecs[1].sub_dim != vecs[0].sub_dim
101  )
103  assert(obj_data);
104  assert(reduct_obj);
105 
106  /* */
107  /* Get pointers to data */
108  /* */
109  sub_dim = vecs[0].sub_dim;
110  /* v0 */
111  v0_val = vecs[0].values;
112  v0_val_s = vecs[0].values_stride;
113  /* v1 */
114  v1_val = vecs[1].values;
115  v1_val_s = vecs[1].values_stride;
116 
117  /* */
118  /* Apply the operator: */
119  /* */
120  for( k = 0; k < sub_dim; ++k, v0_val += v0_val_s, v1_val += v1_val_s )
121  {
122  /* Element-wise reduction */
123  alpha_max_ith = ((*v1_val) >= 0) ? 1.0 : (*tau)*(*v0_val)/(-(*v1_val));
124  /* Reduction of intermediates */
125  (*alpha_max) = min( (*alpha_max), alpha_max_ith );
126  }
127 
128  return 0; /* success? */
129 }
130 
132  const struct RTOp_RTOp_vtbl_t* vtbl, const void* obj_data
133  ,RTOp_ReductTarget reduct_obj
134  )
135 {
136  RTOp_value_type *alpha_max = (RTOp_value_type*)reduct_obj;
137  *alpha_max = 1.0;
138  return 0;
139 }
140 
141 /* Virtual function table */
143 {
146  ,"ROp_fraction_to_zero_boundary"
151 };
152 
153 /* Class specific functions */
154 
156 {
157 #ifdef RTOp_DEBUG
158  assert(op);
159 #endif
160  op->obj_data = NULL;
162  op->vtbl->obj_data_vtbl->obj_create(NULL,NULL,&op->obj_data);
164 }
165 
167 {
168  op->vtbl->obj_data_vtbl->obj_free(NULL,NULL,&op->obj_data);
169  op->obj_data = NULL;
170  op->vtbl = NULL;
171  return 0;
172 }
173 
175 {
176  RTOp_value_type *ptr_tau = (RTOp_value_type*)op->obj_data;
177  *ptr_tau = tau;
178  return 0;
179 }
181 {
182  return *((RTOp_value_type*)reduct_obj);
183 }
184 
int RTOp_get_reduct_min_value_op(const struct RTOp_RTOp_vtbl_t *vtbl, const void *obj_data, RTOp_reduct_op_func_ptr_t *reduct_op_func_ptr)
ptrdiff_t values_stride
Definition: RTOp.h:305
double RTOp_value_type
Definition: RTOp.h:69
int RTOp_reduct_min_value(const struct RTOp_RTOp_vtbl_t *vtbl, const void *obj_data, RTOp_ReductTarget in_targ_obj, RTOp_ReductTarget inout_targ_obj)
void * RTOp_ReductTarget
Definition: RTOp.h:191
int(* obj_create)(const struct RTOp_obj_type_vtbl_t *vtbl, const void *instance_data, void **obj)
Definition: RTOp.h:941
int RTOp_ROp_fraction_to_zero_boundary_destroy(struct RTOp_RTOp *op)
const struct RTOp_obj_type_vtbl_t * obj_data_vtbl
Definition: RTOp.h:819
#define min(a, b)
static int RTOp_ROp_fraction_to_zero_boundary_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)
static int RTOp_ROp_fraction_to_zero_boundary_reduct_obj_reinit(const struct RTOp_RTOp_vtbl_t *vtbl, const void *obj_data, RTOp_ReductTarget reduct_obj)
#define RTOp_ERR_INCOMPATIBLE_VECS
Definition: RTOp.h:270
const struct RTOp_RTOp_vtbl_t RTOp_ROp_fraction_to_zero_boundary_vtbl
const RTOp_value_type * values
Definition: RTOp.h:303
RTOp_value_type RTOp_ROp_fraction_to_zero_boundary_val(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
int RTOp_ROp_fraction_to_zero_boundary_init(RTOp_value_type tau, struct RTOp_RTOp *op)
void * obj_data
Definition: RTOp.h:800
const struct RTOp_RTOp_vtbl_t * vtbl
Definition: RTOp.h:802
int RTOp_ROp_fraction_to_zero_boundary_construct(RTOp_value_type tau, struct RTOp_RTOp *op)
RTOp_index_type sub_dim
Definition: RTOp.h:301
#define RTOp_ERR_INVALID_NUM_TARG_VECS
Definition: RTOp.h:268
const struct RTOp_obj_type_vtbl_t RTOp_obj_value_vtbl
Teuchos_Ordinal RTOp_index_type
Definition: RTOp.h:68