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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
|
//******************************************************************************
//
// File: LongRange.java
// Package: edu.rit.util
// Unit: Class edu.rit.util.LongRange
//
// This Java source file is copyright (C) 2007 by Alan Kaminsky. All rights
// reserved. For further information, contact the author, Alan Kaminsky, at
// ark@cs.rit.edu.
//
// This Java source file is part of the Parallel Java Library ("PJ"). PJ is free
// software; you can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// PJ 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 General Public License for more details.
//
// Linking this library statically or dynamically with other modules is making a
// combined work based on this library. Thus, the terms and conditions of the
// GNU General Public License cover the whole combination.
//
// As a special exception, the copyright holders of this library give you
// permission to link this library with independent modules to produce an
// executable, regardless of the license terms of these independent modules, and
// to copy and distribute the resulting executable under terms of your choice,
// provided that you also meet, for each linked independent module, the terms
// and conditions of the license of that module. An independent module is a
// module which is not derived from or based on this library. If you modify this
// library, you may extend this exception to your version of the library, but
// you are not obligated to do so. If you do not wish to do so, delete this
// exception statement from your version.
//
// A copy of the GNU General Public License is provided in the file gpl.txt. You
// may also obtain a copy of the GNU General Public License on the World Wide
// Web at http://www.gnu.org/licenses/gpl.html.
//
//******************************************************************************
package edu.rit.util;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
/**
* Class LongRange provides a range of type <TT>long</TT>. A range object has
* the following attributes: <B>lower bound</B> <I>L</I>, <B>upper bound</B>
* <I>U</I>, <B>stride</B> <I>S</I>, and <B>length</B> <I>N</I>. A range object
* represents the following set of integers: {<I>L</I>, <I>L</I>+<I>S</I>,
* <I>L</I>+2*<I>S</I>, . . . , <I>L</I>+(<I>N</I>-1)*<I>S</I>}, where <I>U</I>
* = <I>L</I>+(<I>N</I>-1)*<I>S</I>.
* <P>
* You construct a range object by specifying the lower bound, upper bound, and
* stride. If the stride is omitted, the default stride is 1. The length is
* determined automatically. If the lower bound is greater than the upper bound,
* the range's length is 0 (an empty range).
* <P>
* You can use a range object to control a for loop like this:
* <PRE>
* LongRange range = new LongRange (0, N-1);
* long lb = range.lb();
* long ub = range.ub();
* for (long i = lb; i <= ub; ++ i)
* . . .
* </PRE>
* Note that the range is from <TT>lb()</TT> to <TT>ub()</TT> inclusive, so the
* appropriate test in the for loop is <TT>i <= ub</TT>. Also note that it
* usually reduces the running time to call <TT>ub()</TT> once, store the result
* in a local variable, and use the local variable in the for loop test, than to
* call <TT>ub()</TT> directly in the for loop test.
* <P>
* You can use a range object with a stride greater than 1 to control a for loop
* like this:
* <PRE>
* LongRange range = new LongRange (0, N-1, 2);
* long lb = range.lb();
* long ub = range.ub();
* long stride = range.stride();
* for (long i = lb; i <= ub; i += stride)
* . . .
* </PRE>
*
* @author Alan Kaminsky
* @version 30-May-2007
*/
public class LongRange
implements Externalizable
{
// Hidden data members.
private static final long serialVersionUID = 9196521188817114486L;
long lb;
long stride;
long length;
long ub;
// Exported constructors.
/**
* Construct a new range object representing an empty range.
*/
public LongRange()
{
this.lb = 0;
this.stride = 1;
this.length = 0;
setUb();
}
/**
* Construct a new range object with the given lower bound and upper bound.
* The stride is 1. The range object represents the following set of
* integers: {<I>L</I>, <I>L</I>+1, <I>L</I>+2, . . . , <I>U</I>}. The
* range's length <I>N</I> is <I>U</I>-<I>L</I>+1.
* <P>
* <I>Note:</I> <I>L</I> > <I>U</I> is allowed and stands for an empty
* range.
*
* @param lb Lower bound <I>L</I>.
* @param ub Upper bound <I>U</I>.
*/
public LongRange
(long lb,
long ub)
{
this.lb = lb;
this.stride = 1;
this.length = Math.max (ub-lb+1, 0);
setUb();
}
/**
* Construct a new range object with the given lower bound, upper bound, and
* stride. The stride must be greater than or equal to 1. The range object
* represents the following set of integers: {<I>L</I>, <I>L</I>+<I>S</I>,
* <I>L</I>+2*<I>S</I>, . . . , <I>L</I>+(<I>N</I>-1)*<I>S</I>}, where the
* range's length <I>N</I> is such that <I>L</I>+(<I>N</I>-1)*<I>S</I> is
* the largest integer less than or equal to <I>U</I>. Note that the actual
* upper bound of the range, <I>L</I>+(<I>N</I>-1)*<I>S</I>, may not be the
* same as <I>U</I>.
* <P>
* <I>Note:</I> <I>L</I> > <I>U</I> is allowed and stands for an empty
* range.
*
* @param lb Lower bound <I>L</I>.
* @param ub Upper bound <I>U</I>.
* @param stride Stride <I>S</I> >= 1.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <I>S</I> < 1.
*/
public LongRange
(long lb,
long ub,
long stride)
{
if (stride < 1)
{
throw new IllegalArgumentException
("LongRange(): stride = " + stride + " illegal");
}
this.lb = lb;
this.stride = stride;
this.length = Math.max ((ub-lb+stride)/stride, 0);
setUb();
}
/**
* Construct a new range object that is a copy of the given range object.
*
* @param range Range object to copy.
*/
public LongRange
(LongRange range)
{
this.lb = range.lb;
this.stride = range.stride;
this.length = range.length;
this.ub = range.ub;
}
// Exported operations.
/**
* Returns this range's lower bound.
*
* @return Lower bound.
*/
public long lb()
{
return lb;
}
/**
* Returns this range's upper bound.
*
* @return Upper bound.
*/
public long ub()
{
return ub;
}
/**
* Returns this range's stride.
*
* @return Stride.
*/
public long stride()
{
return stride;
}
/**
* Returns this range's length.
*
* @return Length.
*/
public long length()
{
return length;
}
/**
* Determine if this range contains the given value. This range contains the
* given value if <TT>this.lb()</TT> <= <TT>val</TT> <=
* <TT>this.ub()</TT>. (The stride does not affect the outcome.)
*
* @param value Value to test.
*
* @return True if this range contains the given <TT>value</TT>, false
* otherwise.
*/
public boolean contains
(long value)
{
return this.lb <= value && value <= this.ub;
}
/**
* Determine if this range contains the given range. This range contains the
* given range if <TT>this.lb()</TT> <= <TT>range.lb()</TT> and
* <TT>range.ub()</TT> <= <TT>this.ub()</TT>. (The strides do not affect
* the outcome.)
*
* @param range Range to test.
*
* @return True if this range contains the given <TT>range</TT>, false
* otherwise.
*/
public boolean contains
(LongRange range)
{
return this.lb <= range.lb && range.ub <= this.ub;
}
/**
* Partition this range and return one subrange. This range is split up into
* subranges; the <TT>size</TT> argument specifies the number of subranges.
* This range is divided as equally as possible among the subranges; the
* lengths of the subranges differ by at most 1. The subranges are numbered
* 0, 1, . . . <TT>size-1</TT>. This method returns the subrange whose
* number is <TT>rank</TT>.
* <P>
* Note that if <TT>size</TT> is greater than the length of this range, the
* returned subrange may be empty.
*
* @param size Number of subranges, <TT>size</TT> >= 1.
* @param rank Rank of the desired subrange, 0 <= <TT>rank</TT> <
* <TT>size</TT>.
*
* @return Subrange.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <TT>size</TT> or <TT>rank</TT> is out
* of bounds.
*/
public LongRange subrange
(int size,
int rank)
{
// Verify preconditions.
if (size < 1)
{
throw new IllegalArgumentException
("LongRange.subrange(): size = " + size + " illegal");
}
if (0 > rank || rank >= size)
{
throw new IllegalArgumentException
("LongRange.subrange(): rank = " + rank + " illegal");
}
// Split this range.
LongRange result = new LongRange();
long sublen = this.length / size;
int subrem = (int) (this.length % size);
if (rank < subrem)
{
++ sublen;
result.lb = this.lb + (rank * sublen) * this.stride;
}
else
{
result.lb = this.lb + (subrem + rank * sublen) * this.stride;
}
result.stride = this.stride;
result.length = sublen;
result.setUb();
return result;
}
/**
* Partition this range and return all the subranges. This range is split up
* into subranges; the <TT>size</TT> argument specifies the number of
* subranges. This range is divided as equally as possible among the
* subranges; the lengths of the subranges differ by at most 1. The
* subranges are returned in an array with indexes 0, 1, . . .
* <TT>size-1</TT>.
* <P>
* Note that if <TT>size</TT> is greater than the length of this range, some
* of the returned subranges may be empty.
*
* @param size Number of subranges, size >= 1.
*
* @return Array of subranges.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <TT>size</TT> is out of bounds.
*/
public LongRange[] subranges
(int size)
{
// Verify preconditions.
if (size < 1)
{
throw new IllegalArgumentException
("LongRange.subranges(): size = " + size + " illegal");
}
// Allocate storage for subranges.
LongRange[] result = new LongRange [size];
// Compute subranges.
long sublen = this.length / size;
int subrem = (int) (this.length % size);
long x = this.lb;
++ sublen;
for (int i = 0; i < subrem; ++ i)
{
LongRange result_i = new LongRange();
result_i.lb = x;
x += sublen * this.stride;
result_i.stride = this.stride;
result_i.length = sublen;
result_i.setUb();
result[i] = result_i;
}
-- sublen;
for (int i = subrem; i < size; ++ i)
{
LongRange result_i = new LongRange();
result_i.lb = x;
x += sublen * this.stride;
result_i.stride = this.stride;
result_i.length = sublen;
result_i.setUb();
result[i] = result_i;
}
return result;
}
/**
* Slice off a chunk of this range and return the chunk. Considering this
* range as a set of integers from the lower bound to the upper bound, the
* first <TT>N1</TT> integers are sliced off and discarded, then the next
* <TT>N2</TT> integers are sliced off to form a chunk, and the chunk is
* returned. If after removing the first <TT>N1</TT> integers there are
* fewer than <TT>N2</TT> integers left, a chunk consisting of all the
* remaining integers is returned; this may be an empty chunk.
*
* @param N1 Number of integers to discard (must be >= 0).
* @param N2 Number of integers to include in the chunk (must be >= 0).
*
* @return Chunk.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <TT>N1</TT> or <TT>N2</TT> is out of
* bounds.
*/
public LongRange chunk
(long N1,
long N2)
{
// Verify preconditions.
if (N1 < 0)
{
throw new IllegalArgumentException
("LongRange.chunk(): N1 = " + N1 + " illegal");
}
if (N2 < 0)
{
throw new IllegalArgumentException
("LongRange.chunk(): N2 = " + N2 + " illegal");
}
LongRange result = new LongRange();
result.lb = this.lb + N1 * this.stride;
result.stride = this.stride;
result.length = Math.min (N2, Math.max (0, this.length - N1));
result.setUb();
return result;
}
/**
* Determine if this range is equal to the given object. Two ranges are
* equal if they both have the same lower bound, stride, and length.
*
* @param obj Object to test.
*
* @return True if this range is equal to <TT>obj</TT>, false otherwise.
*/
public boolean equals
(Object obj)
{
return
obj instanceof LongRange &&
this.lb == ((LongRange) obj).lb &&
this.stride == ((LongRange) obj).stride &&
this.length == ((LongRange) obj).length;
}
/**
* Returns a hash code for this range.
*/
public int hashCode()
{
return (int) ((((this.lb << 10) + this.stride) << 10) + this.length);
}
/**
* Returns a string version of this range. If the stride is 1, the format is
* <TT>"<I>L</I>..<I>U</I>"</TT>, where <I>L</I> is the lower bound and
* <I>U</I> is the upper bound. If the stride is greater than 1, the format
* is <TT>"<I>L</I>..<I>U</I>;<I>S</I>"</TT>, where <I>L</I> is the lower
* bound, <I>U</I> is the upper bound, and <I>S</I> is the stride.
*/
public String toString()
{
StringBuilder b = new StringBuilder();
b.append (lb);
b.append ("..");
b.append (ub);
if (stride > 1)
{
b.append (';');
b.append (stride);
}
return b.toString();
}
/**
* Write this range to the given object output stream.
*
* @param out Object output stream.
*
* @exception IOException
* Thrown if an I/O error occurred.
*/
public void writeExternal
(ObjectOutput out)
throws IOException
{
out.writeLong (lb);
out.writeLong (stride);
out.writeLong (length);
}
/**
* Read this range from the given object input stream.
*
* @param in Object input stream.
*
* @exception IOException
* Thrown if an I/O error occurred.
*/
public void readExternal
(ObjectInput in)
throws IOException
{
lb = in.readLong();
stride = in.readLong();
length = in.readLong();
setUb();
}
// Hidden operations.
/**
* Set the upper bound of this range based on the lower bound, stride, and
* length.
*/
private void setUb()
{
ub = lb + (length - 1) * stride;
}
// Unit test main program.
// /**
// * Unit test main program.
// */
// public static void main
// (String[] args)
// {
// if (args.length != 4)
// {
// System.err.println ("Usage: edu.rit.util.LongRange <lb> <ub> <stride> <size>");
// System.exit (1);
// }
// long lb = Long.parseLong (args[0]);
// long ub = Long.parseLong (args[1]);
// long stride = Long.parseLong (args[2]);
// int size = Integer.parseInt (args[3]);
// LongRange range = new LongRange (lb, ub, stride);
// System.out.println
// ("LongRange = " + range + ", length = " + range.length());
// for (int rank = 0; rank < size; ++ rank)
// {
// LongRange subrange = range.subrange (size, rank);
// System.out.println
// ("Subrange rank " + rank + " = " + subrange +
// ", length = " + subrange.length());
// }
// LongRange[] subranges = range.subranges (size);
// for (int rank = 0; rank < size; ++ rank)
// {
// System.out.println
// ("Subranges[" + rank + "] = " + subranges[rank] +
// ", length = " + subranges[rank].length());
// }
// }
}
|