summaryrefslogtreecommitdiff
path: root/src/api/java/cvc5/Triplet.java
blob: 0ba75e7fba117639bcf73d7f2489ff37a9aa94df (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/******************************************************************************
 * Top contributors (to current version):
 *   Mudathir Mohamed
 *
 * This file is part of the cvc5 project.
 *
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
 * in the top-level source directory and their institutional affiliations.
 * All rights reserved.  See the file COPYING in the top-level source
 * directory for licensing information.
 * ****************************************************************************
 *
 * The cvc5 java API.
 */

package cvc5;

public class Triplet<A, B, C>
{
  public A first;
  public B second;
  public C third;
  public Triplet(A first, B second, C third)
  {
    this.first = first;
    this.second = second;
    this.third = third;
  }

  @Override public boolean equals(Object object)
  {
    if (this == object)
      return true;
    if (object == null || getClass() != object.getClass())
      return false;

    Triplet<A, B, C> triplet = (Triplet<A, B, C>) object;
    return this.first.equals(triplet.first) && this.second.equals(triplet.second)
        && this.third.equals(triplet.third);
  }
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback