source: ip/src/main/java/geniusweb/ip/general/ElementOfMultiset.java@ 30

Last change on this file since 30 was 30, checked in by bart, 3 years ago

Fixed memory leak. MOPAC2. removed jcenter build dependencies

File size: 333 bytes
Line 
1package geniusweb.ip.general;
2
3public class ElementOfMultiset {
4 public int element;
5
6 public int repetition; // the number of times the element is repeated in the
7 // multiset
8
9 /**
10 * the constructor
11 */
12 public ElementOfMultiset(int element, int repetition) {
13 this.element = element;
14 this.repetition = repetition;
15 }
16}
Note: See TracBrowser for help on using the repository browser.