Home
last modified time | relevance | path

Searched refs:increasing (Results 1 – 25 of 7432) sorted by relevance

12345678910>>...298

/dports/math/R-cran-xts/xts/man/
H A DisOrdered.Rd5 Performs check to determine if a vector is strictly increasing,
6 strictly decreasing, not decreasing, or not increasing.
9 isOrdered(x, increasing = TRUE, strictly = TRUE)
13 \item{increasing}{ test for increasing/decreasing values }
26 # strictly increasing
27 isOrdered(1:10, increasing=TRUE)
28 isOrdered(1:10, increasing=FALSE)
29 isOrdered(c(1,1:10), increasing=TRUE)
30 isOrdered(c(1,1:10), increasing=TRUE, strictly=FALSE)
33 isOrdered(10:1, increasing=TRUE)
[all …]
/dports/deskutils/ical/ical-tcl/types/
H A Dtestarray.C42 array increasing; in run_test() local
44 increasing.append(3 * i); in run_test()
60 compare(10, increasing.size()); in run_test()
73 array t1 = array(increasing); in run_test()
74 compare(t1, increasing); in run_test()
76 array t2 = array(increasing.as_pointer(), increasing.size()); in run_test()
77 compare(t2, increasing); in run_test()
82 array t1 = array(increasing); in run_test()
92 array t1 = array(increasing); in run_test()
104 t1 = increasing; in run_test()
[all …]
/dports/devel/R-cran-vctrs/vctrs/tests/testthat/
H A Dtest-slice.R546 increasing <- TRUE globalVar
559 increasing <- FALSE globalVar
572 increasing <- TRUE globalVar
573 expect_identical(vec_slice_seq(lgl(1, 0, 1), start, size, increasing), lgl())
574 expect_identical(vec_slice_seq(int(1, 2, 3), start, size, increasing), int())
575 expect_identical(vec_slice_seq(dbl(1, 2, 3), start, size, increasing), dbl())
576 expect_identical(vec_slice_seq(cpl(1, 2, 3), start, size, increasing), cpl())
579 expect_identical(vec_slice_seq(list(1, 2, 3), start, size, increasing), list())
585 increasing <- TRUE globalVar
599 increasing <- FALSE globalVar
[all …]
H A Dtest-slice-assign.R663 increasing <- TRUE globalVar
665 …expect_identical(vec_assign_seq(mat(lgl(1, 0, 1)), NA, start, size, increasing), mat(lgl(1, NA, NA…
666 …expect_identical(vec_assign_seq(mat(int(1, 2, 3)), NA, start, size, increasing), mat(int(1, NA, NA…
667 …expect_identical(vec_assign_seq(mat(dbl(1, 2, 3)), NA, start, size, increasing), mat(dbl(1, NA, NA…
677 increasing <- FALSE globalVar
691 increasing <- TRUE globalVar
695 …expect_identical(vec_assign_seq(mat(int(1, 2, 3)), NA, start, size, increasing), mat(int(1, 2, 3)))
696 …expect_identical(vec_assign_seq(mat(dbl(1, 2, 3)), NA, start, size, increasing), mat(dbl(1, 2, 3)))
697 …expect_identical(vec_assign_seq(mat(cpl(1, 2, 3)), NA, start, size, increasing), mat(cpl(1, 2, 3)))
711 increasing <- TRUE globalVar
[all …]
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/psqueues-0.2.7.2/benchmarks/
H A DMain.hs19 increasing :: [BElem]
20 increasing = [(n, n, ()) | n <- [1 .. benchmarkSize]] function
24 decreasing = reverse increasing
38 [ IntPSQ.benchmark "IntPSQ increasing" increasing
41 , HashPSQ.benchmark "HashPSQ increasing" increasing
44 , OrdPSQ.benchmark "OrdPSQ increasing" increasing
47 , PSQueue.benchmark "PSQueue increasing" increasing
50 , FingerPSQ.benchmark "FingerTree PSQueue increasing" increasing
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/psqueues-0.2.7.2/benchmarks/
H A DMain.hs19 increasing :: [BElem]
20 increasing = [(n, n, ()) | n <- [1 .. benchmarkSize]] function
24 decreasing = reverse increasing
38 [ IntPSQ.benchmark "IntPSQ increasing" increasing
41 , HashPSQ.benchmark "HashPSQ increasing" increasing
44 , OrdPSQ.benchmark "OrdPSQ increasing" increasing
47 , PSQueue.benchmark "PSQueue increasing" increasing
50 , FingerPSQ.benchmark "FingerTree PSQueue increasing" increasing
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/psqueues-0.2.7.2/benchmarks/
H A DMain.hs19 increasing :: [BElem]
20 increasing = [(n, n, ()) | n <- [1 .. benchmarkSize]] function
24 decreasing = reverse increasing
38 [ IntPSQ.benchmark "IntPSQ increasing" increasing
41 , HashPSQ.benchmark "HashPSQ increasing" increasing
44 , OrdPSQ.benchmark "OrdPSQ increasing" increasing
47 , PSQueue.benchmark "PSQueue increasing" increasing
50 , FingerPSQ.benchmark "FingerTree PSQueue increasing" increasing
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/psqueues-0.2.7.2/benchmarks/
H A DMain.hs19 increasing :: [BElem]
20 increasing = [(n, n, ()) | n <- [1 .. benchmarkSize]] function
24 decreasing = reverse increasing
38 [ IntPSQ.benchmark "IntPSQ increasing" increasing
41 , HashPSQ.benchmark "HashPSQ increasing" increasing
44 , OrdPSQ.benchmark "OrdPSQ increasing" increasing
47 , PSQueue.benchmark "PSQueue increasing" increasing
50 , FingerPSQ.benchmark "FingerTree PSQueue increasing" increasing
/dports/devel/hs-hoogle/hoogle-5.0.18.2/_cabal_deps/psqueues-0.2.7.2/benchmarks/
H A DMain.hs19 increasing :: [BElem]
20 increasing = [(n, n, ()) | n <- [1 .. benchmarkSize]] function
24 decreasing = reverse increasing
38 [ IntPSQ.benchmark "IntPSQ increasing" increasing
41 , HashPSQ.benchmark "HashPSQ increasing" increasing
44 , OrdPSQ.benchmark "OrdPSQ increasing" increasing
47 , PSQueue.benchmark "PSQueue increasing" increasing
50 , FingerPSQ.benchmark "FingerTree PSQueue increasing" increasing
/dports/math/minizinc/libminizinc-2.5.5/share/minizinc/std/
H A Dincreasing.mzn6 /** @group globals.sort Requires that the array \a x is in increasing order (duplicates are allowed…
7 predicate increasing(array[$X] of var bool: x) =
10 /** @group globals.sort Requires that the array \a x is in increasing order (duplicates are allowed…
11 predicate increasing(array[$X] of var float: x) =
14 /** @group globals.sort Requires that the array \a x is in increasing order (duplicates are allowed…
15 predicate increasing(array[$X] of var int: x) =
18 /** @group globals.sort Requires that the array \a x is in increasing order (duplicates are allowed…
19 predicate increasing(array[$X] of var set of int: x) =
/dports/www/hs-yesod-bin/yesod-bin-1.6.1/_cabal_deps/psqueues-0.2.7.2/benchmarks/
H A DMain.hs19 increasing :: [BElem]
20 increasing = [(n, n, ()) | n <- [1 .. benchmarkSize]] function
24 decreasing = reverse increasing
38 [ IntPSQ.benchmark "IntPSQ increasing" increasing
41 , HashPSQ.benchmark "HashPSQ increasing" increasing
44 , OrdPSQ.benchmark "OrdPSQ increasing" increasing
47 , PSQueue.benchmark "PSQueue increasing" increasing
50 , FingerPSQ.benchmark "FingerTree PSQueue increasing" increasing
/dports/www/hs-wai-app-static/wai-app-static-3.1.7.2/_cabal_deps/psqueues-0.2.7.2/benchmarks/
H A DMain.hs19 increasing :: [BElem]
20 increasing = [(n, n, ()) | n <- [1 .. benchmarkSize]] function
24 decreasing = reverse increasing
38 [ IntPSQ.benchmark "IntPSQ increasing" increasing
41 , HashPSQ.benchmark "HashPSQ increasing" increasing
44 , OrdPSQ.benchmark "OrdPSQ increasing" increasing
47 , PSQueue.benchmark "PSQueue increasing" increasing
50 , FingerPSQ.benchmark "FingerTree PSQueue increasing" increasing
/dports/www/hs-postgrest/postgrest-8.0.0/_cabal_deps/psqueues-0.2.7.2/benchmarks/
H A DMain.hs19 increasing :: [BElem]
20 increasing = [(n, n, ()) | n <- [1 .. benchmarkSize]] function
24 decreasing = reverse increasing
38 [ IntPSQ.benchmark "IntPSQ increasing" increasing
41 , HashPSQ.benchmark "HashPSQ increasing" increasing
44 , OrdPSQ.benchmark "OrdPSQ increasing" increasing
47 , PSQueue.benchmark "PSQueue increasing" increasing
50 , FingerPSQ.benchmark "FingerTree PSQueue increasing" increasing
/dports/net/mpich2/mpich2-1.5/test/mpi/topo/
H A Ddims1.c11 int increasing( int ndims, const int dims[] );
21 int increasing( int ndims, const int dims[] ) in increasing() function
51 if (increasing( ndims, dims )) { in main()
69 if (increasing( ndims, dims )) { in main()
85 if (increasing( ndims, dims )) { in main()
101 if (increasing( ndims, dims )) { in main()
117 if (increasing( ndims, dims )) { in main()
133 if (increasing( ndims, dims )) { in main()
/dports/net/mpich/mpich-3.4.3/test/mpi/topo/
H A Ddims1.c11 int increasing(int ndims, const int dims[]);
21 int increasing(int ndims, const int dims[]) in increasing() function
50 if (increasing(ndims, dims)) { in main()
67 if (increasing(ndims, dims)) { in main()
82 if (increasing(ndims, dims)) { in main()
97 if (increasing(ndims, dims)) { in main()
112 if (increasing(ndims, dims)) { in main()
127 if (increasing(ndims, dims)) { in main()
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tools/
H A Drootfinding.py21 start_low=None, start_upp=None, increasing=None, argument
120 if ((low is None) or (upp is None)) and increasing is None:
132 increasing = (f_low < f_upp)
161 increasing = (f_low < f_upp)
163 if not increasing:
209 info.increasing = increasing
/dports/net-im/zkgroup/zkgroup-0.7.4/cargo-crates/packed_simd-0.3.3/src/api/
H A Dshuffle1_dyn.rs27 let increasing = { localVariable
48 let increasing_ids: Indices = increasing.cast();
52 increasing.shuffle1_dyn(increasing_ids),
53 increasing,
62 increasing.shuffle1_dyn(decreasing_ids),
68 increasing,
75 assert_eq!(increasing.shuffle1_dyn(v_ids),
76 $id::splat(increasing.extract(i))
/dports/textproc/ripgrep/ripgrep-13.0.0/cargo-crates/packed_simd_2-0.3.6/src/api/
H A Dshuffle1_dyn.rs27 let increasing = { localVariable
48 let increasing_ids: Indices = increasing.cast();
52 increasing.shuffle1_dyn(increasing_ids),
53 increasing,
62 increasing.shuffle1_dyn(decreasing_ids),
68 increasing,
75 assert_eq!(increasing.shuffle1_dyn(v_ids),
76 $id::splat(increasing.extract(i))
/dports/www/firefox/firefox-99.0/third_party/rust/packed_simd/src/api/
H A Dshuffle1_dyn.rs27 let increasing = { localVariable
48 let increasing_ids: Indices = increasing.cast();
52 increasing.shuffle1_dyn(increasing_ids),
53 increasing,
62 increasing.shuffle1_dyn(decreasing_ids),
68 increasing,
75 assert_eq!(increasing.shuffle1_dyn(v_ids),
76 $id::splat(increasing.extract(i))
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/packed_simd/src/api/
H A Dshuffle1_dyn.rs27 let increasing = { localVariable
48 let increasing_ids: Indices = increasing.cast();
52 increasing.shuffle1_dyn(increasing_ids),
53 increasing,
62 increasing.shuffle1_dyn(decreasing_ids),
68 increasing,
75 assert_eq!(increasing.shuffle1_dyn(v_ids),
76 $id::splat(increasing.extract(i))
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/packed_simd-0.3.3/src/api/
H A Dshuffle1_dyn.rs27 let increasing = { localVariable
48 let increasing_ids: Indices = increasing.cast();
52 increasing.shuffle1_dyn(increasing_ids),
53 increasing,
62 increasing.shuffle1_dyn(decreasing_ids),
68 increasing,
75 assert_eq!(increasing.shuffle1_dyn(v_ids),
76 $id::splat(increasing.extract(i))
/dports/lang/rust/rustc-1.58.1-src/vendor/packed_simd_2/src/api/
H A Dshuffle1_dyn.rs27 let increasing = { localVariable
48 let increasing_ids: Indices = increasing.cast();
52 increasing.shuffle1_dyn(increasing_ids),
53 increasing,
62 increasing.shuffle1_dyn(decreasing_ids),
68 increasing,
75 assert_eq!(increasing.shuffle1_dyn(v_ids),
76 $id::splat(increasing.extract(i))
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/packed_simd/src/api/
H A Dshuffle1_dyn.rs27 let increasing = { localVariable
48 let increasing_ids: Indices = increasing.cast();
52 increasing.shuffle1_dyn(increasing_ids),
53 increasing,
62 increasing.shuffle1_dyn(decreasing_ids),
68 increasing,
75 assert_eq!(increasing.shuffle1_dyn(v_ids),
76 $id::splat(increasing.extract(i))
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/packed_simd/src/api/
H A Dshuffle1_dyn.rs27 let increasing = { localVariable
48 let increasing_ids: Indices = increasing.cast();
52 increasing.shuffle1_dyn(increasing_ids),
53 increasing,
62 increasing.shuffle1_dyn(decreasing_ids),
68 increasing,
75 assert_eq!(increasing.shuffle1_dyn(v_ids),
76 $id::splat(increasing.extract(i))
/dports/lang/php80/php-8.0.15/ext/standard/tests/array/
H A Duasort_basic2.phpt20 // increasing values
22 echo "-- Numeric array with increasing values --\n";
32 // increasing and decreasing values
34 echo "-- Numeric array with increasing and decreasing values --\n";
42 -- Numeric array with increasing values --
74 -- Numeric array with increasing and decreasing values --

12345678910>>...298