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

src.it.unimi.dsi.util.LongIntervals Maven / Gradle / Ivy

Go to download

The DSI utilities are a mish mash of classes accumulated during the last ten years in projects developed at the DSI (Dipartimento di Scienze dell'Informazione, i.e., Information Sciences Department), now DI (Dipartimento di Informatica, i.e., Informatics Department), of the Universita` degli Studi di Milano.

There is a newer version: 2.7.3
Show newest version
package it.unimi.dsi.util;

/*		 
 * DSI utilities
 *
 * Copyright (C) 2003-2016 Paolo Boldi and Sebastiano Vigna 
 *
 *  This library is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU Lesser General Public License as published by the Free
 *  Software Foundation; either version 3 of the License, or (at your option)
 *  any later version.
 *
 *  This library is distributed in the hope that it will be useful, but
 *  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 *  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 *  for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with this program; if not, see .
 *
 */      

import java.util.Comparator;

                                                                                                                                                             
/** A class providing static methods and objects that do useful things with intervals. 
 * 
 * @see LongInterval
 */

public class LongIntervals {

	private LongIntervals() {}

	public final static LongInterval[] EMPTY_ARRAY = {};

	/** An empty (singleton) interval. */
	public final static LongInterval EMPTY_INTERVAL = new LongInterval( 1, 0 );

	/** A singleton located at −∞. */
	public final static LongInterval MINUS_INFINITY = new LongInterval( Integer.MIN_VALUE, Integer.MIN_VALUE );

	/** A comparator between intervals defined as follows:
	 * [a..b] is less than [a'..b']
	 * iff the first interval starts after the second one, that is, 
	 * iff a' < a.
	 */
	public final static Comparator STARTS_AFTER = new Comparator() {
		public int compare( final LongInterval i1, final LongInterval i2 ) {
			if ( i1.left != i2.left ) return i2.left < i1.left ? -1 : 1;
			return 0;
		}
	};                                                                                                                    

	/** A comparator between intervals defined as follows:
	 * [a..b] is less than [a'..b']
	 * iff the first interval starts before the second one, that is, 
	 * iff a < a'.
	 */
	public final static Comparator STARTS_BEFORE = new Comparator() {
		public int compare( final LongInterval i1, final LongInterval i2 ) {
			if ( i1.left != i2.left ) return i2.left < i1.left ? 1 : -1;
			return 0;
		}
	};                                                                                                                    

	/** A comparator between intervals defined as follows:
	 * [a..b] is less than [a'..b']
	 * iff the first interval ends after the second one, that is, 
	 * iff b' < b.
	 */
	public final static Comparator ENDS_AFTER = new Comparator() {
		public int compare( final LongInterval i1, final LongInterval i2 ) {
			if ( i1.right != i2.right ) return i2.right < i1.right ? -1 : 1;
			return 0;
		}
	};                                                                                                                    

	/** A comparator between intervals defined as follows:
	 * [a..b] is less than [a'..b']
	 * iff the first interval ends before the second one, that is, 
	 * iff b < b'.
	 */
	public final static Comparator ENDS_BEFORE = new Comparator() {
		public int compare( final LongInterval i1, final LongInterval i2 ) {
			if ( i1.right != i2.right ) return i2.right < i1.right ? 1 : -1;
			return 0;
		}
	};                                                                                                                    

	/** A comparator between intervals based on their length. */
	public final static Comparator LENGTH_COMPARATOR = new Comparator() {
		public int compare( final LongInterval i1, final LongInterval i2 ) {
			return (int)Math.signum( i1.length() - i2.length() );
		}
	};                                                                                                                    
}
                                                                                                                                                        




© 2015 - 2025 Weber Informatics LLC | Privacy Policy