zeroValue.h
1 /* Copyright (C) 2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 #ifndef HELIB_ZEROVALUE_H
13 #define HELIB_ZEROVALUE_H
14 
15 #include <helib/Ctxt.h>
16 #include <helib/Ptxt.h>
17 
18 // FIXME: There must be a better way to get a zero object.
19 
20 namespace helib {
21 
28 template <typename T>
29 inline T zeroValue(const T& x)
30 {
31  // x is unused by design, so cast to avoid error
32  static_cast<void>(x);
33  // type T must be able to convert int
34  return T(0);
35 }
36 
42 template <>
43 inline Ctxt zeroValue<Ctxt>(const Ctxt& x)
44 {
45  return Ctxt(ZeroCtxtLike, x);
46 }
47 
53 template <>
54 inline Ptxt<BGV> zeroValue<Ptxt<BGV>>(const Ptxt<BGV>& x)
55 {
56  return Ptxt<BGV>(x.getContext());
57 }
58 
64 template <>
65 inline Ptxt<CKKS> zeroValue<Ptxt<CKKS>>(const Ptxt<CKKS>& x)
66 {
67  return Ptxt<CKKS>(x.getContext());
68 }
69 
70 } // namespace helib
71 
72 #endif // HELIB_ZEROVALUE_H
T zeroValue(const T &x)
Given an object x return a zero object of the same type.
Definition: zeroValue.h:29
Definition: apiAttributes.h:21
Ctxt zeroValue< Ctxt >(const Ctxt &x)
Given a Ctxt return a zero object of the same type.
Definition: zeroValue.h:43
A Ctxt object holds a single ciphertext.
Definition: Ctxt.h:273