File: parse_031.out

package info (click to toggle)
liboptimade-filter-perl 0.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 764 kB
  • sloc: perl: 947; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 1,815 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$VAR1 = bless( {
                 'operands' => [
                                 bless( {
                                          'is_known' => 1,
                                          'property' => bless( {
                                                                 'name' => [
                                                                             'chemical_formula_hill'
                                                                           ]
                                                               }, 'OPTIMADE::Filter::Property' )
                                        }, 'OPTIMADE::Filter::Known' ),
                                 bless( {
                                          'inner' => bless( {
                                                              'is_known' => 0,
                                                              'property' => bless( {
                                                                                     'name' => [
                                                                                                 'chemical_formula_anonymous'
                                                                                               ]
                                                                                   }, 'OPTIMADE::Filter::Property' )
                                                            }, 'OPTIMADE::Filter::Known' )
                                        }, 'OPTIMADE::Filter::Negation' )
                               ],
                 'operator' => 'AND'
               }, 'OPTIMADE::Filter::AndOr' );
== Filter ==
(chemical_formula_hill IS KNOWN AND (NOT chemical_formula_anonymous IS UNKNOWN))
== SQL ==
'chemical_formula_hill' IS NOT NULL AND NOT ('chemical_formula_anonymous' IS NULL)