2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2009,2010,2011,2012,2013,2014,2015,2016,2017,2018, by the GROMACS development team, led by
5 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 * and including many others, as listed in the AUTHORS file in the
7 * top-level source directory and at http://www.gromacs.org.
9 * GROMACS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
14 * GROMACS is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with GROMACS; if not, see
21 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * If you want to redistribute modifications to GROMACS, please
25 * consider that scientific software is very special. Version
26 * control is crucial - bugs must be traceable. We will be happy to
27 * consider code for inclusion in the official distribution, but
28 * derived work must not be called official GROMACS. Details are found
29 * in the README & COPYING files - if they are missing, get the
30 * official version at http://www.gromacs.org.
32 * To help us fund GROMACS development, we humbly ask that you cite
33 * the research papers on the package. Check out http://www.gromacs.org.
37 * Implements internal selection method for comparison expressions.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_selection
46 #include "gromacs/math/utilities.h"
47 #include "gromacs/utility/arraysize.h"
48 #include "gromacs/utility/basedefinitions.h"
49 #include "gromacs/utility/exceptions.h"
50 #include "gromacs/utility/smalloc.h"
53 #include "selmethod.h"
55 /** Defines the comparison operator for comparison expressions. */
58 CMP_INVALID
, /**< Indicates an error */
63 CMP_EQUAL
, /**< '==' */
67 /** The operand has a single value. */
68 #define CMP_SINGLEVAL 1
69 /** The operand value is dynamic. */
70 #define CMP_DYNAMICVAL 2
71 /** The value is real. */
73 /** The integer array is allocated. */
74 #define CMP_ALLOCINT 16
75 /** The real array is allocated. */
76 #define CMP_ALLOCREAL 32
79 * Data structure for comparison expression operand values.
83 /** Flags that describe the type of the operand. */
85 /** (Array of) integer value(s). */
87 /** (Array of) real value(s). */
92 * Data structure for comparison expression evaluation.
96 /** Comparison operator as a string. */
98 /** Comparison operator type. */
101 t_compare_value left
;
103 t_compare_value right
;
104 } t_methoddata_compare
;
107 * Allocates data for comparison expression evaluation.
109 * \param[in] npar Not used (should be 5).
110 * \param[in,out] param Method parameters (should point to a copy of
111 * \ref smparams_compare).
112 * \returns Pointer to the allocated data (\c t_methoddata_compare).
114 * Allocates memory for a \c t_methoddata_compare structure.
117 init_data_compare(int npar
, gmx_ana_selparam_t
*param
);
119 * Initializes data for comparison expression evaluation.
121 * \param[in] top Not used.
122 * \param[in] npar Not used (should be 5).
123 * \param[in] param Method parameters (should point to \ref smparams_compare).
124 * \param[in] data Should point to a \c t_methoddata_compare.
125 * \returns 0 if the input data is valid, -1 on error.
128 init_compare(const gmx_mtop_t
*top
, int npar
, gmx_ana_selparam_t
*param
, void *data
);
129 /** Frees the memory allocated for comparison expression evaluation. */
131 free_data_compare(void *data
);
133 * Evaluates comparison expressions.
135 * \param[in] context Not used.
136 * \param[in] g Evaluation index group.
137 * \param[out] out Output data structure (\p out->u.g is used).
138 * \param[in] data Should point to a \c t_methoddata_compare.
141 evaluate_compare(const gmx::SelMethodEvalContext
&context
,
142 gmx_ana_index_t
*g
, gmx_ana_selvalue_t
*out
, void *data
);
144 /** Parameters for comparison expression evaluation. */
145 static gmx_ana_selparam_t smparams_compare
[] = {
146 {"int1", {INT_VALUE
, -1, {nullptr}}, nullptr,
147 SPAR_OPTIONAL
| SPAR_DYNAMIC
| SPAR_ATOMVAL
},
148 {"real1", {REAL_VALUE
, -1, {nullptr}}, nullptr,
149 SPAR_OPTIONAL
| SPAR_DYNAMIC
| SPAR_ATOMVAL
},
150 {"op", {STR_VALUE
, 1, {nullptr}}, nullptr, 0},
151 {"int2", {INT_VALUE
, -1, {nullptr}}, nullptr,
152 SPAR_OPTIONAL
| SPAR_DYNAMIC
| SPAR_ATOMVAL
},
153 {"real2", {REAL_VALUE
, -1, {nullptr}}, nullptr,
154 SPAR_OPTIONAL
| SPAR_DYNAMIC
| SPAR_ATOMVAL
},
157 /** \internal Selection method data for comparison expression evaluation. */
158 gmx_ana_selmethod_t sm_compare
= {
159 "cmp", GROUP_VALUE
, SMETH_SINGLEVAL
,
160 asize(smparams_compare
), smparams_compare
,
169 {nullptr, nullptr, 0, nullptr},
173 * Returns a \c e_comparison_t value corresponding to an operator.
175 * \param[in] str String to process.
176 * \returns The comparison type corresponding to the first one or two
177 * characters of \p str.
179 * \p str can contain any number of characters; only the first two
181 * If the beginning of \p str does not match any of the recognized types,
182 * \ref CMP_INVALID is returned.
184 static e_comparison_t
185 comparison_type(const char *str
)
189 case '<': return (str
[1] == '=') ? CMP_LEQ
: CMP_LESS
;
190 case '>': return (str
[1] == '=') ? CMP_GEQ
: CMP_GTR
;
191 case '=': return (str
[1] == '=') ? CMP_EQUAL
: CMP_INVALID
;
192 case '!': return (str
[1] == '=') ? CMP_NEQ
: CMP_INVALID
;
198 * Returns a string corresponding to a \c e_comparison_t value.
200 * \param[in] cmpt Comparison type to convert.
201 * \returns Pointer to a string that corresponds to \p cmpt.
203 * The return value points to a string constant and should not be \p free'd.
205 * The function returns NULL if \p cmpt is not one of the valid values.
208 comparison_type_str(e_comparison_t cmpt
)
210 const char *p
= nullptr;
213 case CMP_INVALID
: p
= "INVALID"; break;
214 case CMP_LESS
: p
= "<"; break;
215 case CMP_LEQ
: p
= "<="; break;
216 case CMP_GTR
: p
= ">"; break;
217 case CMP_GEQ
: p
= ">="; break;
218 case CMP_EQUAL
: p
= "=="; break;
219 case CMP_NEQ
: p
= "!="; break;
220 // No default clause so we intentionally get compiler errors
221 // if new selection choices are added later.
227 * \param[in] fp File to receive the output.
228 * \param[in] data Should point to a \c t_methoddata_compare.
231 _gmx_selelem_print_compare_info(FILE *fp
, void *data
)
233 t_methoddata_compare
*d
= static_cast<t_methoddata_compare
*>(data
);
236 /* Print the left value */
237 if ((d
->left
.flags
& CMP_SINGLEVAL
) && !(d
->left
.flags
& CMP_DYNAMICVAL
))
239 if (d
->left
.flags
& CMP_REALVAL
)
241 fprintf(fp
, "%f ", d
->left
.r
[0]);
245 fprintf(fp
, "%d ", d
->left
.i
[0]);
248 /* Print the operator */
249 if (d
->cmpt
!= CMP_INVALID
)
251 fprintf(fp
, "%s", comparison_type_str(d
->cmpt
));
255 fprintf(fp
, "%s", d
->cmpop
);
257 /* Print the right value */
258 if ((d
->right
.flags
& CMP_SINGLEVAL
) && !(d
->right
.flags
& CMP_DYNAMICVAL
))
260 if (d
->right
.flags
& CMP_REALVAL
)
262 fprintf(fp
, " %f", d
->right
.r
[0]);
266 fprintf(fp
, " %d", d
->right
.i
[0]);
273 init_data_compare(int /* npar */, gmx_ana_selparam_t
*param
)
275 t_methoddata_compare
*data
;
278 param
[2].val
.u
.s
= &data
->cmpop
;
283 * Reverses a comparison operator.
285 * \param[in] type Comparison operator to reverse.
286 * \returns The correct comparison operator that equals \p type when the
287 * left and right sides are interchanged.
289 static e_comparison_t
290 reverse_comparison_type(e_comparison_t type
)
294 case CMP_LESS
: return CMP_GTR
;
295 case CMP_LEQ
: return CMP_GEQ
;
296 case CMP_GTR
: return CMP_LESS
;
297 case CMP_GEQ
: return CMP_LEQ
;
304 * Initializes the value storage for comparison expression.
306 * \param[out] val Value structure to initialize.
307 * \param[in] param Parameters to use for initialization.
308 * \returns The number of values provided for the value, 0 on error.
311 init_comparison_value(t_compare_value
*val
, gmx_ana_selparam_t param
[2])
316 if (param
[0].flags
& SPAR_SET
)
318 val
->flags
|= (param
[0].flags
& SPAR_DYNAMIC
) ? CMP_DYNAMICVAL
: 0;
319 val
->flags
|= !(param
[0].flags
& SPAR_ATOMVAL
) ? CMP_SINGLEVAL
: 0;
321 val
->i
= param
[0].val
.u
.i
;
323 else if (param
[1].flags
& SPAR_SET
)
325 val
->flags
|= (param
[1].flags
& SPAR_DYNAMIC
) ? CMP_DYNAMICVAL
: 0;
326 val
->flags
|= !(param
[1].flags
& SPAR_ATOMVAL
) ? CMP_SINGLEVAL
: 0;
327 val
->flags
|= CMP_REALVAL
;
329 val
->r
= param
[1].val
.u
.r
;
341 * Converts an integer value to floating point.
343 * \param[in] n Number of values in the \p val->u array.
344 * \param[in,out] val Value to convert.
347 convert_int_real(int n
, t_compare_value
*val
)
353 for (i
= 0; i
< n
; ++i
)
355 rv
[i
] = static_cast<real
>(val
->i
[i
]);
357 /* Free the previous value if one is present. */
360 val
->flags
|= CMP_REALVAL
| CMP_ALLOCREAL
;
364 * Converts a floating point value to integer.
366 * \param[in] n Number of values in the \p val->u array.
367 * \param[in,out] val Value to convert.
368 * \param[in] cmpt Comparison operator type.
369 * \param[in] bRight true if \p val appears on the right hand size of
371 * \returns 0 on success, EINVAL on error.
373 * The values are rounded such that the same comparison operator can be used.
376 convert_real_int(int n
, t_compare_value
*val
, e_comparison_t cmpt
, bool bRight
)
383 cmpt
= reverse_comparison_type(cmpt
);
386 /* Round according to the comparison type */
387 for (i
= 0; i
< n
; ++i
)
393 iv
[i
] = static_cast<int>(std::ceil(val
->r
[i
]));
397 iv
[i
] = static_cast<int>(std::floor(val
->r
[i
]));
402 /* TODO: Implement, although it isn't typically very useful.
403 * Implementation is only a matter of proper initialization,
404 * the evaluation function can already handle this case with
405 * proper preparations. */
406 GMX_THROW(gmx::NotImplementedError("Equality comparison between dynamic integer and static real expressions not implemented"));
407 case CMP_INVALID
: /* Should not be reached */
409 GMX_THROW(gmx::InternalError("Invalid comparison type"));
412 /* Free the previous value if one is present. */
415 val
->flags
&= ~CMP_REALVAL
;
416 val
->flags
|= CMP_ALLOCINT
;
420 init_compare(const gmx_mtop_t
* /* top */, int /* npar */, gmx_ana_selparam_t
*param
, void *data
)
422 t_methoddata_compare
*d
= static_cast<t_methoddata_compare
*>(data
);
425 /* Store the values */
426 n1
= init_comparison_value(&d
->left
, ¶m
[0]);
427 n2
= init_comparison_value(&d
->right
, ¶m
[3]);
428 /* Store the comparison type */
429 d
->cmpt
= comparison_type(d
->cmpop
);
430 if (d
->cmpt
== CMP_INVALID
)
432 GMX_THROW(gmx::InternalError("Invalid comparison type"));
434 /* Convert the values to the same type */
435 /* TODO: Currently, there are no dynamic integer-valued selection methods,
436 * which means that only the branches with convert_int_real() will ever be
437 * taken. It should be considered whether it is necessary to support these
438 * other cases at all.
440 if ((d
->left
.flags
& CMP_REALVAL
) && !(d
->right
.flags
& CMP_REALVAL
))
442 if (d
->left
.flags
& d
->right
.flags
& CMP_DYNAMICVAL
)
444 /* Nothing can be done */
446 else if (!(d
->right
.flags
& CMP_DYNAMICVAL
))
448 convert_int_real(n2
, &d
->right
);
450 else /* d->left is static */
452 convert_real_int(n1
, &d
->left
, d
->cmpt
, false);
455 else if (!(d
->left
.flags
& CMP_REALVAL
) && (d
->right
.flags
& CMP_REALVAL
))
457 if (d
->left
.flags
& d
->right
.flags
& CMP_DYNAMICVAL
)
459 /* Reverse the sides to place the integer on the right */
461 d
->left
.r
= d
->right
.r
;
462 d
->right
.r
= nullptr;
463 d
->right
.i
= d
->left
.i
;
465 flags
= d
->left
.flags
;
466 d
->left
.flags
= d
->right
.flags
;
467 d
->right
.flags
= flags
;
468 d
->cmpt
= reverse_comparison_type(d
->cmpt
);
470 else if (!(d
->left
.flags
& CMP_DYNAMICVAL
))
472 convert_int_real(n1
, &d
->left
);
474 else /* d->right is static */
476 convert_real_int(n2
, &d
->right
, d
->cmpt
, true);
482 * \param data Data to free (should point to a \c t_methoddata_compare).
484 * Frees the memory allocated for \c t_methoddata_compare.
487 free_data_compare(void *data
)
489 t_methoddata_compare
*d
= static_cast<t_methoddata_compare
*>(data
);
492 if (d
->left
.flags
& CMP_ALLOCINT
)
496 if (d
->left
.flags
& CMP_ALLOCREAL
)
500 if (d
->right
.flags
& CMP_ALLOCINT
)
504 if (d
->right
.flags
& CMP_ALLOCREAL
)
512 * Implementation for evaluate_compare() for integer values.
514 * \param[in] g Evaluation index group.
515 * \param[out] out Output data structure (\p out->u.g is used).
516 * \param[in] data Should point to a \c t_methoddata_compare.
519 evaluate_compare_int(gmx_ana_index_t
*g
, gmx_ana_selvalue_t
*out
, void *data
)
521 t_methoddata_compare
*d
= static_cast<t_methoddata_compare
*>(data
);
526 for (i
= i1
= i2
= ig
= 0; i
< g
->isize
; ++i
)
533 case CMP_INVALID
: break;
534 case CMP_LESS
: bAccept
= a
< b
; break;
535 case CMP_LEQ
: bAccept
= a
<= b
; break;
536 case CMP_GTR
: bAccept
= a
> b
; break;
537 case CMP_GEQ
: bAccept
= a
>= b
; break;
538 case CMP_EQUAL
: bAccept
= a
== b
; break;
539 case CMP_NEQ
: bAccept
= a
!= b
; break;
543 out
->u
.g
->index
[ig
++] = g
->index
[i
];
545 if (!(d
->left
.flags
& CMP_SINGLEVAL
))
549 if (!(d
->right
.flags
& CMP_SINGLEVAL
))
554 out
->u
.g
->isize
= ig
;
558 * Implementation for evaluate_compare() if either value is non-integer.
560 * \param[in] g Evaluation index group.
561 * \param[out] out Output data structure (\p out->u.g is used).
562 * \param[in] data Should point to a \c t_methoddata_compare.
564 * Left value is assumed to be real-valued; right value can be either.
565 * This is ensured by the initialization method.
568 evaluate_compare_real(gmx_ana_index_t
*g
, gmx_ana_selvalue_t
*out
, void *data
)
570 t_methoddata_compare
*d
= static_cast<t_methoddata_compare
*>(data
);
575 for (i
= i1
= i2
= ig
= 0; i
< g
->isize
; ++i
)
578 b
= (d
->right
.flags
& CMP_REALVAL
) ? d
->right
.r
[i2
] : d
->right
.i
[i2
];
582 case CMP_INVALID
: break;
583 case CMP_LESS
: bAccept
= a
< b
; break;
584 case CMP_LEQ
: bAccept
= a
<= b
; break;
585 case CMP_GTR
: bAccept
= a
> b
; break;
586 case CMP_GEQ
: bAccept
= a
>= b
; break;
587 case CMP_EQUAL
: bAccept
= gmx_within_tol(a
, b
, GMX_REAL_EPS
); break;
588 case CMP_NEQ
: bAccept
= !gmx_within_tol(a
, b
, GMX_REAL_EPS
); break;
592 out
->u
.g
->index
[ig
++] = g
->index
[i
];
594 if (!(d
->left
.flags
& CMP_SINGLEVAL
))
598 if (!(d
->right
.flags
& CMP_SINGLEVAL
))
603 out
->u
.g
->isize
= ig
;
607 evaluate_compare(const gmx::SelMethodEvalContext
& /*context*/,
608 gmx_ana_index_t
*g
, gmx_ana_selvalue_t
*out
, void *data
)
610 t_methoddata_compare
*d
= static_cast<t_methoddata_compare
*>(data
);
612 if (!((d
->left
.flags
| d
->right
.flags
) & CMP_REALVAL
))
614 evaluate_compare_int(g
, out
, data
);
618 evaluate_compare_real(g
, out
, data
);