MOOCHO (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RTOp_TOp_inv_of_difference.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 /* Note: This file was created automatically by 'new_rtop.pl' */
46 /* on 6/27/2002 at 20:41 */
47 /* */
48 
49 #define max(a,b) ( (a) > (b) ? (a) : (b) )
50 #define min(a,b) ( (a) < (b) ? (a) : (b) )
51 
53 #include "RTOp_obj_value_vtbl.h" /* vtbl for operator object instance data */
54 
55 
56 
57 /* Implementation functions for RTOp_RTOp */
58 
60  const struct RTOp_RTOp_vtbl_t* vtbl, const void* obj_data
61  , const int num_vecs, const struct RTOp_SubVector vecs[]
62  , const int num_targ_vecs, const struct RTOp_MutableSubVector targ_vecs[]
63  , RTOp_ReductTarget reduct_obj )
64 {
65  /* */
66  /* Declare local variables */
67  /* */
68 
69  /* Access to the operator object instance data */
70  RTOp_value_type *alpha = (RTOp_value_type*)obj_data;
71  /* Vector data */
72  RTOp_index_type sub_dim;
73  /* z0 */
74  RTOp_value_type *z0_val;
75  ptrdiff_t z0_val_s;
76  /* v0 */
77  const RTOp_value_type *v0_val;
78  ptrdiff_t v0_val_s;
79  /* v1 */
80  const RTOp_value_type *v1_val;
81  ptrdiff_t v1_val_s;
82 
83  register RTOp_index_type k;
84 
85  /* */
86  /* Validate the input */
87  /* */
88  if( num_vecs != 2 || ( num_vecs && vecs == NULL ) )
90  if( num_targ_vecs != 1 || ( num_targ_vecs && targ_vecs == NULL ) )
92  if( /* Validate sub_dim */
93  vecs[1].sub_dim != vecs[0].sub_dim
94  || targ_vecs[0].sub_dim != vecs[0].sub_dim
95  )
97  assert(obj_data);
98 
99 
100  /* */
101  /* Get pointers to data */
102  /* */
103  sub_dim = vecs[0].sub_dim;
104  /* z0 */
105  z0_val = targ_vecs[0].values;
106  z0_val_s = targ_vecs[0].values_stride;
107  /* v0 */
108  v0_val = vecs[0].values;
109  v0_val_s = vecs[0].values_stride;
110  /* v1 */
111  v1_val = vecs[1].values;
112  v1_val_s = vecs[1].values_stride;
113 
114 
115  /* */
116  /* Apply the operator: */
117  /* */
118  /* element-wise transformation : z0 = alpha/(v0-v1); */
119  /* */
120  for( k = 0; k < sub_dim; ++k, v0_val += v0_val_s, v1_val += v1_val_s, z0_val += z0_val_s )
121  {
122  /* Element-wise transformation */
123 /* if (fabs((*v0_val)-(*v1_val)) > 5.562685e-309) */
124  { (*z0_val) = (*alpha)/((*v0_val)-(*v1_val)); }
125 /* else */
126 /* { (*z0_val) = 1.797693e+308; } */
127  }
128 
129  return 0; /* success? */
130 }
131 
132 /* Virtual function table */
134 {
137  ,"TOp_inv_of_difference"
138  ,NULL
140  ,NULL
141  ,NULL
142 };
143 
144 /* Class specific functions */
145 
147 {
148 #ifdef RTOp_DEBUG
149  assert(op);
150 #endif
151  op->obj_data = NULL;
153  op->vtbl->obj_data_vtbl->obj_create(NULL,NULL,&op->obj_data);
154  return RTOp_TOp_inv_of_difference_init(alpha,op);
155 }
156 
158 {
159  op->vtbl->obj_data_vtbl->obj_free(NULL,NULL,&op->obj_data);
160  op->obj_data = NULL;
161  op->vtbl = NULL;
162  return 0;
163 }
164 
166 {
167  RTOp_value_type *ptr_alpha = (RTOp_value_type*)op->obj_data;
168  *ptr_alpha = alpha;
169  return 0;
170 }
171 
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
int(* obj_create)(const struct RTOp_obj_type_vtbl_t *vtbl, const void *instance_data, void **obj)
Definition: RTOp.h:941
int RTOp_TOp_inv_of_difference_init(RTOp_value_type alpha, struct RTOp_RTOp *op)
const struct RTOp_obj_type_vtbl_t * obj_data_vtbl
Definition: RTOp.h:819
#define RTOp_ERR_INCOMPATIBLE_VECS
Definition: RTOp.h:270
static int RTOp_TOp_inv_of_difference_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)
const struct RTOp_RTOp_vtbl_t RTOp_TOp_inv_of_difference_vtbl
const RTOp_value_type * values
Definition: RTOp.h:303
#define RTOp_ERR_INVALID_NUM_VECS
Definition: RTOp.h:266
int RTOp_TOp_inv_of_difference_construct(RTOp_value_type alpha, struct RTOp_RTOp *op)
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
void * obj_data
Definition: RTOp.h:800
const struct RTOp_RTOp_vtbl_t * vtbl
Definition: RTOp.h:802
int RTOp_TOp_inv_of_difference_destroy(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