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 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
|
!
! File: Ordering_IntOrderTest_Impl.F90
! Symbol: Ordering.IntOrderTest-v0.1
! Symbol Type: class
! Babel Version: 0.10.2
! Description: Server-side implementation for Ordering.IntOrderTest
!
! WARNING: Automatically generated; only changes within splicers preserved
!
! babel-version = 0.10.2
!
!
! Symbol "Ordering.IntOrderTest" (version 0.1)
!
! This class provides methods to verify that the array ordering
! capabilities work for arrays of int.
!
#include "Ordering_IntOrderTest_fAbbrev.h"
#include "sidl_ClassInfo_fAbbrev.h"
#include "sidl_BaseInterface_fAbbrev.h"
#include "sidl_BaseClass_fAbbrev.h"
#include "sidl_int_fAbbrev.h"
! DO-NOT-DELETE splicer.begin(_miscellaneous_code_start)
integer(selected_int_kind(9)) function iFunc(ind, dim)
implicit none
integer(selected_int_kind(9)) :: dim
integer(selected_int_kind(9)), dimension(dim), intent(in) :: ind
integer(selected_int_kind(9)) :: res, i
res = 0
do i=1, dim
res = res + i * ind(i)
enddo
ifunc = res
end function iFunc
logical function isIMatrix_1(A)
use sidl_int_array
type(sidl_int_1d), intent(in) :: A
integer(selected_int_kind(9)), dimension(1) :: ind, low, up
integer(selected_int_kind(9)) :: i, iFunc
isIMatrix_1 = .true.
do i = 1, 1
low(i) = lower(A, i-1)
up(i) = upper(A, i-1)
enddo
do i = low(1), up(1)
ind(1) = i
if (iFunc(ind, 1) .ne. A%d_data(i)) then
isIMatrix_1 = .false.
endif
enddo
end function isIMatrix_1
logical function isIMatrix_2(A)
use sidl_int_array
type(sidl_int_2d), intent(in) :: A
integer(selected_int_kind(9)), dimension(2) :: ind, low, up
integer(selected_int_kind(9)) :: i, j, iFunc
isIMatrix_2 = .true.
do i = 1, 2
low(i) = lower(A, i-1)
up(i) = upper(A, i-1)
enddo
do i = low(1), up(1)
ind(1) = i
do j = low(2), up(2)
ind(2) = j
if (iFunc(ind, 2) .ne. A%d_data(i,j)) then
isIMatrix_2 = .false.
endif
enddo
enddo
end function isIMatrix_2
logical function isIMatrix_4(A)
use sidl_int_array
type(sidl_int_4d), intent(in) :: A
integer(selected_int_kind(9)), dimension(4) :: ind, low, up
integer(selected_int_kind(9)) :: i, j, k, l, iFunc
isIMatrix_4 = .true.
do i = 1, 4
low(i) = lower(A, i-1)
up(i) = upper(A, i-1)
enddo
do i = low(1), up(1)
ind(1) = i
do j = low(2), up(2)
ind(2) = j
do k = low(3), up(3)
ind(3) = k
do l = low(4), up(4)
ind(4) = l
if (iFunc(ind, 4) .ne. A%d_data(i,j,k,l)) then
isIMatrix_4 = .false.
endif
enddo
enddo
enddo
enddo
end function isIMatrix_4
subroutine fillIMatrix_2(A)
use sidl_int_array
type(sidl_int_2d), intent(inout) :: A
integer(selected_int_kind(9)), dimension(2) :: ind, low, up
integer(selected_int_kind(9)) :: i, j, iFunc
do i = 1, 2
low(i) = lower(A, i-1)
up(i) = upper(A, i-1)
enddo
do i = low(1), up(1)
ind(1) = i
do j = low(2), up(2)
ind(2) = j
if (mod(i+j,2) .eq. 1) then
A%d_data(i,j) = iFunc(ind, 2)
else
call set(A, i, j, iFunc(ind, 2))
endif
enddo
enddo
end subroutine fillIMatrix_2
subroutine fillIMatrix_4(A)
use sidl_int_array
type(sidl_int_4d), intent(inout) :: A
integer(selected_int_kind(9)), dimension(4) :: ind, low, up
integer(selected_int_kind(9)) :: i, j, k, l, iFunc
do i = 1, 4
low(i) = lower(A, i-1)
up(i) = upper(A, i-1)
enddo
do i = low(1), up(1)
ind(1) = i
do j = low(2), up(2)
ind(2) = j
do k = low(3), up(3)
ind(3) = k
do l = low(4), up(4)
ind(4) = l
if (mod(i+j+k+l, 2) .eq. 1) then
A%d_data(i,j,k,l) = iFunc(ind, 4)
else
call set(A, ind, iFunc(ind, 4))
endif
enddo
enddo
enddo
enddo
end subroutine fillIMatrix_4
! DO-NOT-DELETE splicer.end(_miscellaneous_code_start)
!
! Class constructor called when the class is created.
!
recursive subroutine Ordering_IntOrderTest__ctor_mi(self)
use Ordering_IntOrderTest
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._ctor.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._ctor.use)
implicit none
type(Ordering_IntOrderTest_t) :: self ! in
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._ctor)
! Insert the implementation here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._ctor)
end subroutine Ordering_IntOrderTest__ctor_mi
!
! Class destructor called when the class is deleted.
!
recursive subroutine Ordering_IntOrderTest__dtor_mi(self)
use Ordering_IntOrderTest
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._dtor.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._dtor.use)
implicit none
type(Ordering_IntOrderTest_t) :: self ! in
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._dtor)
! Insert the implementation here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._dtor)
end subroutine Ordering_IntOrderTest__dtor_mi
!
! Static class initializer called exactly once before any user-defined method is dispatched
!
recursive subroutine Ordering_IntOrderTest__load_mi()
use Ordering_IntOrderTest
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._load.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._load.use)
implicit none
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._load)
! Insert the implementation here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._load)
end subroutine Ordering_IntOrderTest__load_mi
!
! Create a column-major matrix satisfying condition I.
!
recursive subroutine makeColumnIMatrixz5ybfavnz3i_mi(size, useCreateCol, &
retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.makeColumnIMatrix.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.makeColumnIMatrix.use)
implicit none
integer (selected_int_kind(9)) :: size ! in
logical :: useCreateCol ! in
type(sidl_int_2d) :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.makeColumnIMatrix)
if (useCreateCol) then
call create2dCol(size, size, retval)
else
call create2dRow(size, size, retval)
endif
call fillIMatrix_2(retval)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.makeColumnIMatrix)
end subroutine makeColumnIMatrixz5ybfavnz3i_mi
!
! Create a row-major matrix satisfying condition I.
!
recursive subroutine Int_makeRowIMatrix8h06e37u6x_mi(size, useCreateRow, &
retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.makeRowIMatrix.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.makeRowIMatrix.use)
implicit none
integer (selected_int_kind(9)) :: size ! in
logical :: useCreateRow ! in
type(sidl_int_2d) :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.makeRowIMatrix)
if (useCreateRow) then
call create2dRow(size, size, retval)
else
call create2dCol(size, size, retval)
endif
call fillIMatrix_2(retval)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.makeRowIMatrix)
end subroutine Int_makeRowIMatrix8h06e37u6x_mi
!
! Create a 4-D matrix satisfying condition I. Each dimension has
! size elements numbers 0 through size-1.
!
recursive subroutine IntOrd_makeIMatrixs68ixk4nld_mi(size, useCreateColumn, &
retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.makeIMatrix.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.makeIMatrix.use)
implicit none
integer (selected_int_kind(9)) :: size ! in
logical :: useCreateColumn ! in
type(sidl_int_4d) :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.makeIMatrix)
integer(selected_int_kind(9)) low(4), up(4), i
do i = 1, 4
low(i) = 0
up(i) = size - 1
enddo
if (useCreateColumn) then
call createCol(low, up, retval)
else
call createRow(low, up, retval)
endif
call fillIMatrix_4(retval)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.makeIMatrix)
end subroutine IntOrd_makeIMatrixs68ixk4nld_mi
!
! Create a column-major matrix satisfying condition I.
!
recursive subroutine createColumnIMatrij98n1gtwcu_mi(size, useCreateCol, res)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.createColumnIMatrix.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.createColumnIMatrix.use)
implicit none
integer (selected_int_kind(9)) :: size ! in
logical :: useCreateCol ! in
type(sidl_int_2d) :: res ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.createColumnIMatrix)
if (useCreateCol) then
call makeColumnIMatrix(size, .true., res)
else
call makeRowIMatrix(size, .true., res)
endif
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.createColumnIMatrix)
end subroutine createColumnIMatrij98n1gtwcu_mi
!
! Create a row-major matrix satisfying condition I.
!
recursive subroutine I_createRowIMatrixq_lpgbci6l_mi(size, useCreateRow, res)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.createRowIMatrix.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.createRowIMatrix.use)
implicit none
integer (selected_int_kind(9)) :: size ! in
logical :: useCreateRow ! in
type(sidl_int_2d) :: res ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.createRowIMatrix)
if (useCreateRow) then
call makeRowIMatrix(size, .true., res)
else
call makeColumnIMatrix(size, .true., res)
endif
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.createRowIMatrix)
end subroutine I_createRowIMatrixq_lpgbci6l_mi
!
! Make sure an array is column-major. No changes to the dimension or
! values in a are made.
!
recursive subroutine IntOr_ensureColumno2tek0_o3o_mi(a)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.ensureColumn.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.ensureColumn.use)
implicit none
type(sidl_int_2d) :: a ! inout
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.ensureColumn)
! no action required
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.ensureColumn)
end subroutine IntOr_ensureColumno2tek0_o3o_mi
!
! Make sure an array is row-major. No changes to the dimension or
! values in a are made.
!
recursive subroutine IntOrder_ensureRow2xbnpv1nvt_mi(a)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.ensureRow.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.ensureRow.use)
implicit none
type(sidl_int_2d) :: a ! inout
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.ensureRow)
! no action required
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.ensureRow)
end subroutine IntOrder_ensureRow2xbnpv1nvt_mi
!
! Return <code>true</code> iff the implementation sees
! an incoming array satisfying condition I.
!
recursive subroutine IntOr_isIMatrixOne3gwlgypfcv_mi(A, retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isIMatrixOne.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isIMatrixOne.use)
implicit none
type(sidl_int_1d) :: A ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isIMatrixOne)
logical isIMatrix_1
retval = isIMatrix_1(A)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isIMatrixOne)
end subroutine IntOr_isIMatrixOne3gwlgypfcv_mi
!
! Return <code>true</code> iff the implementation sees
! an incoming column-major array satisfying condition I.
!
recursive subroutine isColumnIMatrixOned9rdelopb9_mi(A, retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isColumnIMatrixOne.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isColumnIMatrixOne.use)
implicit none
type(sidl_int_1d) :: A ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isColumnIMatrixOne)
logical acol, isIMatrix_1
acol = isColumnOrder(A)
retval = acol .and. isIMatrix_1(A)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isColumnIMatrixOne)
end subroutine isColumnIMatrixOned9rdelopb9_mi
!
! Return <code>true</code> iff the implementation sees
! an incoming row-major array satisfying condition I.
!
recursive subroutine In_isRowIMatrixOne607iplqtr5_mi(A, retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isRowIMatrixOne.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isRowIMatrixOne.use)
implicit none
type(sidl_int_1d) :: A ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isRowIMatrixOne)
logical arow, isIMatrix_1
arow = isRowOrder(A)
retval = arow .and. isIMatrix_1(A)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isRowIMatrixOne)
end subroutine In_isRowIMatrixOne607iplqtr5_mi
!
! Return <code>true</code> iff the implementation sees
! an incoming array satisfying condition I.
!
recursive subroutine IntOr_isIMatrixTwogo7_eewh9w_mi(A, retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isIMatrixTwo.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isIMatrixTwo.use)
implicit none
type(sidl_int_2d) :: A ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isIMatrixTwo)
logical isIMatrix_2
retval = isIMatrix_2(A)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isIMatrixTwo)
end subroutine IntOr_isIMatrixTwogo7_eewh9w_mi
!
! Return <code>true</code> iff the implementation sees
! an incoming column-major array satisfying condition I.
!
recursive subroutine isColumnIMatrixTwo9neer9_rft_mi(A, retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isColumnIMatrixTwo.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isColumnIMatrixTwo.use)
implicit none
type(sidl_int_2d) :: A ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isColumnIMatrixTwo)
logical acol, isIMatrix_2
acol = isColumnOrder(A)
retval = acol .and. isIMatrix_2(A)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isColumnIMatrixTwo)
end subroutine isColumnIMatrixTwo9neer9_rft_mi
!
! Return <code>true</code> iff the implementation sees
! an incoming row-major array satisfying condition I.
!
recursive subroutine In_isRowIMatrixTwoqo0guawv83_mi(A, retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isRowIMatrixTwo.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isRowIMatrixTwo.use)
implicit none
type(sidl_int_2d) :: A ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isRowIMatrixTwo)
logical arow, isIMatrix_2
arow = isRowOrder(A)
retval = arow .and. isIMatrix_2(A)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isRowIMatrixTwo)
end subroutine In_isRowIMatrixTwoqo0guawv83_mi
!
! Return <code>true</code> iff the implementation sees
! an incoming array satisfying condition I.
!
recursive subroutine IntO_isIMatrixFourgf7n_6hyd2_mi(A, retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isIMatrixFour.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isIMatrixFour.use)
implicit none
type(sidl_int_4d) :: A ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isIMatrixFour)
logical isIMatrix_4
retval = isIMatrix_4(A)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isIMatrixFour)
end subroutine IntO_isIMatrixFourgf7n_6hyd2_mi
!
! Return <code>true</code> iff the implementation sees
! an incoming column-major array satisfying condition I.
!
recursive subroutine isColumnIMatrixFouunjqbwfb23_mi(A, retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isColumnIMatrixFour.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isColumnIMatrixFour.use)
implicit none
type(sidl_int_4d) :: A ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isColumnIMatrixFour)
logical acol, isIMatrix_4
acol = isColumnOrder(A)
retval = acol .and. isIMatrix_4(A)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isColumnIMatrixFour)
end subroutine isColumnIMatrixFouunjqbwfb23_mi
!
! Return <code>true</code> iff the implementation sees
! an incoming row-major array satisfying condition I.
!
recursive subroutine I_isRowIMatrixFourfai8pehvh9_mi(A, retval)
use Ordering_IntOrderTest
use sidl_int_array
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isRowIMatrixFour.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isRowIMatrixFour.use)
implicit none
type(sidl_int_4d) :: A ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isRowIMatrixFour)
logical arow, isIMatrix_4
arow = isRowOrder(A)
retval = arow .and. isIMatrix_4(A)
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isRowIMatrixFour)
end subroutine I_isRowIMatrixFourfai8pehvh9_mi
!
! Return <code>true</code> iff the implementation of slice
! and smart copy is correct.
!
recursive subroutine Int_isSliceWorkingf42w8d0h4b_mi(useCreateCol, retval)
use Ordering_IntOrderTest
use Ordering_IntOrderTest_impl
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isSliceWorking.use)
use sidl_int_array
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isSliceWorking.use)
implicit none
logical :: useCreateCol ! in
logical :: retval ! out
! DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest.isSliceWorking)
integer(selected_int_kind(9)) :: maxDim, halfDim, ind(2), &
astride(2), numElem(2)
integer(selected_int_kind(9)) :: newIndex(2), dim, Aelem, &
Belem, iFunc
type(sidl_int_2d) :: A, B
retval = .true.
maxDim = 16
halfDim = maxDim / 2
astride(1) = 2
astride(2) = 2
numElem(1) = halfDim
numElem(2) = halfDim
ind(1) = 0
ind(2) = 0
newIndex(1) = 0
newIndex(2) = 0
call set_null(A)
call set_null(B)
if (useCreateCol) then
call makeColumnIMatrix(maxDim, .false., A)
else
call makeRowIMatrix(maxDim, .false., A)
endif
call slice(A, numElem, ind, astride, newIndex, B)
if (is_null(B)) then
retval = .false.
goto 100
endif
dim = dimen(B)
if (dim .ne. 2) then
retval = .false.
goto 100
endif
do while (newIndex(2) .lt. halfDim)
do while (newIndex(1) .lt. halfDim)
call get(A, ind, Aelem)
call get(B, newIndex, Belem)
if ((Aelem .ne. Belem) .or. Belem .ne. iFunc(ind, 2)) then
retval = .false.
goto 100
endif
newIndex(1) = newIndex(1) + 1
ind(1) = ind(1) + 2
enddo
newIndex(2) = newIndex(2) + 1
ind(2) = ind(2) + 2
enddo
! CLEANUP AND RETURN
100 if (not_null(A)) then
call deleteRef(A)
endif
if (not_null(B)) then
call deleteRef(B)
endif
! DO-NOT-DELETE splicer.end(Ordering.IntOrderTest.isSliceWorking)
end subroutine Int_isSliceWorkingf42w8d0h4b_mi
! DO-NOT-DELETE splicer.begin(_miscellaneous_code_end)
! Insert extra code here...
! DO-NOT-DELETE splicer.end(_miscellaneous_code_end)
|