MOOCHO (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RTOp_TOp_max_abs_vec_scalar.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 #include <math.h>
45 
46 /* ///////////////////////////////////////////// */
47 /* RTOp_TOp_max_abs_vec_scalar.c */
48 
49 /* */
50 /* Note: This file was created automatically by 'new_rtop.pl' */
51 /* on 7/13/2002 at 13:48 */
52 /* */
53 
54 #define max(a,b) ( (a) > (b) ? (a) : (b) )
55 #define min(a,b) ( (a) < (b) ? (a) : (b) )
56 
58 #include "RTOp_obj_value_vtbl.h" /* vtbl for operator object instance data */
59 
60 /* Implementation functions for RTOp_RTOp */
61 
63  const struct RTOp_RTOp_vtbl_t* vtbl, const void* obj_data
64  , const int num_vecs, const struct RTOp_SubVector vecs[]
65  , const int num_targ_vecs, const struct RTOp_MutableSubVector targ_vecs[]
66  , RTOp_ReductTarget reduct_obj )
67 {
68  /* */
69  /* Declare local variables */
70  /* */
71 
72  /* Access to the operator object instance data */
73  RTOp_value_type *min_ele = (RTOp_value_type*)obj_data;
74  /* Vector data */
75  RTOp_index_type sub_dim;
76  /* z0 */
77  RTOp_value_type *z0_val;
78  ptrdiff_t z0_val_s;
79 
80  /* Automatic temporary variables */
81  register RTOp_index_type k;
82 
83  /* */
84  /* Validate the input */
85  /* */
86  if( num_vecs != 0 || ( num_vecs && vecs == NULL ) )
88  if( num_targ_vecs != 1 || ( num_targ_vecs && targ_vecs == NULL ) )
90  assert(obj_data);
91 
92  /* */
93  /* Get pointers to data */
94  /* */
95  sub_dim = targ_vecs[0].sub_dim;
96  /* z0 */
97  z0_val = targ_vecs[0].values;
98  z0_val_s = targ_vecs[0].values_stride;
99 
100  /* */
101  /* Apply the operator: */
102  /* */
103  for( k = 0; k < sub_dim; ++k, z0_val += z0_val_s )
104  {
105  /* Element-wise transformation */
106  (*z0_val) = max(fabs((*z0_val)),(*min_ele));
107  }
108 
109  return 0; /* success? */
110 }
111 
112 /* Virtual function table */
114 {
117  ,"TOp_max_abs_vec_scalar"
118  ,NULL
120  ,NULL
121  ,NULL
122 };
123 
124 /* Class specific functions */
125 
127 {
128 #ifdef RTOp_DEBUG
129  assert(op);
130 #endif
131  op->obj_data = NULL;
133  op->vtbl->obj_data_vtbl->obj_create(NULL,NULL,&op->obj_data);
134  return RTOp_TOp_max_abs_vec_scalar_init(min_ele,op);
135 }
136 
138 {
139  op->vtbl->obj_data_vtbl->obj_free(NULL,NULL,&op->obj_data);
140  op->obj_data = NULL;
141  op->vtbl = NULL;
142  return 0;
143 }
144 
146 {
147  RTOp_value_type *ptr_min_ele = (RTOp_value_type*)op->obj_data;
148  *ptr_min_ele = min_ele;
149  return 0;
150 }
151 
double RTOp_value_type
Definition: RTOp.h:69
ptrdiff_t values_stride
Definition: RTOp.h:338
int RTOp_TOp_max_abs_vec_scalar_init(RTOp_value_type min_ele, struct RTOp_RTOp *op)
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
const struct RTOp_obj_type_vtbl_t * obj_data_vtbl
Definition: RTOp.h:819
int RTOp_TOp_max_abs_vec_scalar_destroy(struct RTOp_RTOp *op)
#define max(a, b)
RTOp_index_type sub_dim
Definition: RTOp.h:334
#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
void * obj_data
Definition: RTOp.h:800
const struct RTOp_RTOp_vtbl_t * vtbl
Definition: RTOp.h:802
const struct RTOp_RTOp_vtbl_t RTOp_TOp_max_abs_vec_scalar_vtbl
int RTOp_TOp_max_abs_vec_scalar_construct(RTOp_value_type min_ele, struct RTOp_RTOp *op)
#define RTOp_ERR_INVALID_NUM_TARG_VECS
Definition: RTOp.h:268
const struct RTOp_obj_type_vtbl_t RTOp_obj_value_vtbl
static int RTOp_TOp_max_abs_vec_scalar_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)
Teuchos_Ordinal RTOp_index_type
Definition: RTOp.h:68