All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.paukov.combinatorics3.IntegerPartitionGenerator Maven / Gradle / Ivy

/*
  Combinatorics Library 3
  Copyright 2009-2016 Dmytro Paukov [email protected]
 */
package org.paukov.combinatorics3;

import java.util.Iterator;
import java.util.List;

class IntegerPartitionGenerator implements IGenerator> {

  final Integer value;

  IntegerPartitionGenerator(Integer value) {
    this.value = value;
  }

  @Override
  public Iterator> iterator() {
    return new IntegerPartitionIterator(this);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy