RTOpPack: Extra C/C++ Code for Vector Reduction/Transformation Operators  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
RTOp_ROp_num_bounded.c
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 "RTOp_ROp_num_bounded.h"
45 #include "RTOp_obj_value_vtbl.h"
46 #include "RTOp_reduct_sum_value.h"
47 
48 /* Note that the reduction quantity that we are accumulating (num_bounded) */
49 /* is an integral type and really should be delcared as RTOp_index_type. */
50 /* However, the machinary is already there for accumulating an RTOp_value_type */
51 /* reduction object so this implementation is just lazy and uses a double */
52 /* for an integer. This should not slow things down very much and does */
53 /* not really waste any memory. */
54 
55 /* Implementation functions */
56 
57 static int RTOp_ROp_num_bounded_apply_op(
58  const struct RTOp_RTOp_vtbl_t* vtbl, const void* obj_data
59  , const int num_vecs, const struct RTOp_SubVector vecs[]
60  , const int num_targ_vecs, const struct RTOp_MutableSubVector targ_vecs[]
61  , RTOp_ReductTarget targ_obj )
62 {
63  RTOp_value_type inf_bnd;
64  RTOp_index_type sub_dim;
65  const RTOp_value_type *xl_val;
66  ptrdiff_t xl_val_s;
67  const RTOp_value_type *xu_val;
68  ptrdiff_t xu_val_s;
69  RTOp_index_type num_bounded = 0;
70  register RTOp_index_type k;
71 
72  /* */
73  /* Validate the input */
74  /* */
75  if( num_vecs != 2 )
76  return RTOp_ERR_INVALID_NUM_VECS;
77  assert( vecs );
78  if( num_targ_vecs != 0 )
79  return RTOp_ERR_INVALID_NUM_TARG_VECS;
80  if( vecs[0].sub_dim != vecs[1].sub_dim ) /* Same sizes */
81  return RTOp_ERR_INCOMPATIBLE_VECS;
82 
83  /* */
84  /* Get pointers to data */
85  /* */
86 
87  /* inf_bnd */
88  inf_bnd = *((RTOp_value_type*)obj_data);
89  /* sub_dim */
90  sub_dim = vecs[0].sub_dim;
91  /* xl */
92  xl_val = vecs[0].values;
93  xl_val_s = vecs[0].values_stride;
94  /* xl */
95  xu_val = vecs[1].values;
96  xu_val_s = vecs[1].values_stride;
97 
98  /* */
99  /* Count the number of bounded variables */
100  /* */
101  for( k = 0; k < sub_dim; ++k, xl_val += xl_val_s, xu_val += xu_val_s ) {
102  if( *xl_val > -inf_bnd || *xu_val < +inf_bnd )
103  ++num_bounded;
104  }
105 
106  /* */
107  /* Add this to the result */
108  /* */
109  *((RTOp_value_type*)targ_obj) += num_bounded;
110 
111  return 0; /* success? */
112 }
113 
114 /* Virtual function table pointer */
115 const struct RTOp_RTOp_vtbl_t RTOp_ROp_num_bounded_vtbl =
116 {
117  &RTOp_obj_value_vtbl /* use simple scalar value type for object instance data */
118  ,&RTOp_obj_value_vtbl /* use simple scalar value type for target object */
119  ,"ROp_num_bounded"
120  ,NULL
121  ,RTOp_ROp_num_bounded_apply_op
122  ,RTOp_reduct_sum_value
123  ,RTOp_get_reduct_sum_value_op
124 };
125 
126 /* Class specific functions */
127 
128 int RTOp_ROp_num_bounded_construct( RTOp_value_type inf_bnd, struct RTOp_RTOp* op )
129 {
130  op->vtbl = &RTOp_ROp_num_bounded_vtbl;
131  op->vtbl->obj_data_vtbl->obj_create( NULL, NULL, &op->obj_data );
132  *((RTOp_value_type*)op->obj_data) = inf_bnd;
133  return 0; /* success? */
134 }
135 
136 int RTOp_ROp_num_bounded_destroy( struct RTOp_RTOp* op )
137 {
138  op->vtbl->obj_data_vtbl->obj_free(NULL,NULL,&op->obj_data);
139  op->vtbl = NULL;
140  return 0; /* success? */
141 }
142 
143 int RTOp_ROp_num_bounded_set_inf_bnd( RTOp_value_type inf_bnd, struct RTOp_RTOp* op )
144 {
145  *((RTOp_value_type*)op->obj_data) = inf_bnd;
146  return 0; /* success? */
147 }
148 
149 RTOp_index_type RTOp_ROp_num_bounded_val(RTOp_ReductTarget targ_obj)
150 {
151  return (RTOp_index_type)*((RTOp_value_type*)targ_obj);
152 }
int(* obj_create)(const struct RTOp_obj_type_vtbl_t *vtbl, const void *instance_data, void **obj)
Definition: RTOp.h:941
int(* obj_free)(const struct RTOp_obj_type_vtbl_t *vtbl, const void *instance_data, void **obj)
Definition: RTOp.h:1019