content
stringlengths
6
1.03M
input_ids
listlengths
4
535k
ratio_char_token
float64
0.68
8.61
token_count
int64
4
535k
<reponame>matzipan/AstroBase.jl<filename>test/ephemerides.jl using Test import AstroBase using AstroTime: Epoch, TDBEpoch, SECONDS_PER_DAY, j2000, seconds, value, julian_twopart using AstroBase.Ephemerides using AstroBase.Bodies using AstroBase.Constants: astronomical_unit using ERFA using LinearAlgebra: norm using SP...
[ 27, 7856, 261, 480, 29, 6759, 13344, 272, 14, 32, 20661, 14881, 13, 20362, 27, 34345, 29, 9288, 14, 538, 39557, 1460, 13, 20362, 198, 3500, 6208, 198, 11748, 35167, 14881, 198, 198, 3500, 35167, 7575, 25, 4551, 5374, 11, 309, 11012, ...
1.688678
5,467
<reponame>guo-yong-zhi/Luxor.jl<filename>test/animation-test.jl #!/usr/bin/env julia using Luxor using Test using Colors using Random Random.seed!(42) demomovie = Movie(400, 400, "test", 0:359) function backdrop(scene, framenumber) background("black") end function frame(scene, framenumber) sethue(Colors...
[ 27, 7856, 261, 480, 29, 5162, 78, 12, 88, 506, 12, 89, 5303, 14, 43, 2821, 273, 13, 20362, 27, 34345, 29, 9288, 14, 11227, 341, 12, 9288, 13, 20362, 198, 2, 48443, 14629, 14, 8800, 14, 24330, 474, 43640, 198, 198, 3500, 17145, 2...
2.407378
1,274
<filename>src/completely_factorized_vfhmm.jl # Completely factorized variational inference using NumericExtensions const Ο΅ = 1.0e-64 # update variational paramter `ΞΈ` based on eq. (9a), (9b) function _updateE!(fhmm::FHMM, Y::AbstractMatrix, ΞΈ::Array{Float64, 3}, # shape (K, M,...
[ 27, 34345, 29, 10677, 14, 46699, 62, 31412, 1143, 62, 85, 69, 71, 3020, 13, 20362, 198, 2, 13248, 306, 5766, 1143, 5553, 864, 32278, 198, 198, 3500, 399, 39223, 11627, 5736, 198, 198, 9979, 18074, 113, 796, 352, 13, 15, 68, 12, 24...
1.659184
3,653
# This file is a part of JuliaFEM. # License is MIT: see https://github.com/JuliaFEM/Mortar3D.jl/blob/master/LICENSE using Base.Test using Mortar3D: project_from_surface_to_plane, project_from_plane_to_surface @testset "project from surface to plane" begin p = [1.0, 1.0, 3.0] x0 = [0.0, 0.0, 0.0] n0 = [0....
[ 2, 770, 2393, 318, 257, 636, 286, 22300, 37, 3620, 13, 198, 2, 13789, 318, 17168, 25, 766, 3740, 1378, 12567, 13, 785, 14, 16980, 544, 37, 3620, 14, 44, 419, 283, 18, 35, 13, 20362, 14, 2436, 672, 14, 9866, 14, 43, 2149, 24290, ...
1.896985
398
module KMeans using StatsBase function initialize(colors, fixed, n) y = sample(1:size(colors)[2], n) x = sample(1:size(colors)[3], n) means = zeros(size(colors)[1], n) for i in 1:n means[:, i] = colors[:, y[i], x[i]] end return [fixed means] end function assign_clusters!(colors, me...
[ 21412, 509, 5308, 504, 198, 198, 3500, 20595, 14881, 198, 198, 8818, 41216, 7, 4033, 669, 11, 5969, 11, 299, 8, 198, 220, 220, 220, 331, 796, 6291, 7, 16, 25, 7857, 7, 4033, 669, 38381, 17, 4357, 299, 8, 198, 220, 220, 220, 2124...
2.243976
664
<gh_stars>10-100 @testset "floydwarshall" begin A = load_matrix_network("all_shortest_paths_example") #A.nzval += abs(minimum(A)) + 1 # remove negative edges nzvals = nonzeros(A) val = abs(minimum(A)) + 1 for ii=1:length(nzvals) nzvals[ii] += val end m = size(A,1) D2 = zeros(Flo...
[ 27, 456, 62, 30783, 29, 940, 12, 3064, 198, 31, 9288, 2617, 366, 2704, 12192, 86, 5406, 439, 1, 2221, 198, 220, 220, 220, 317, 796, 3440, 62, 6759, 8609, 62, 27349, 7203, 439, 62, 19509, 395, 62, 6978, 82, 62, 20688, 4943, 198, ...
1.795389
347
# Use baremodule to shave off a few KB from the serialized `.ji` file baremodule SPIRV_Cross_jll using Base using Base: UUID import JLLWrappers JLLWrappers.@generate_main_file_header("SPIRV_Cross") JLLWrappers.@generate_main_file("SPIRV_Cross", UUID("b5475fc2-85c9-5de8-8430-71c9b732ec36")) end # module SPIRV_Cross_jl...
[ 2, 5765, 6247, 21412, 284, 34494, 572, 257, 1178, 14204, 422, 262, 11389, 1143, 4600, 13, 7285, 63, 2393, 198, 49382, 21412, 6226, 4663, 53, 62, 21544, 62, 73, 297, 198, 3500, 7308, 198, 3500, 7308, 25, 471, 27586, 198, 11748, 449, ...
2.458015
131
""" Tensor networks via the operad of undirected wiring diagrams. """ module TensorNetworks export RelationDiagram, @tensor_network, parse_tensor_network, contract_tensor_network, @contract_tensors_with, gen_tensor_notation using MLStyle: @match using ...CategoricalAlgebra.CSets using ...WiringDiagrams.UndirectedWi...
[ 37811, 309, 22854, 7686, 2884, 262, 1515, 324, 286, 3318, 1060, 276, 29477, 37067, 13, 198, 37811, 198, 21412, 309, 22854, 7934, 5225, 198, 39344, 4718, 341, 18683, 6713, 11, 2488, 83, 22854, 62, 27349, 11, 21136, 62, 83, 22854, 62, 2...
2.757364
3,429
# Collection of protected function for GP """Protected division""" pdiv(x, y, undef=10e6) = ifelse(y==0 , x+undef , div(x,y)) """Protected exponential""" pexp(x, undef=10e15) = ifelse(x>=32, x+undef , exp(x)) """Protected natural log""" plog(x, undef=10e6) = ifelse(x==0 , -undef , log(abs(x))) """Protected sq...
[ 2, 12251, 286, 6861, 2163, 329, 14714, 198, 198, 37811, 19703, 11197, 7297, 37811, 198, 79, 7146, 7, 87, 11, 331, 11, 3318, 891, 28, 940, 68, 21, 8, 796, 611, 17772, 7, 88, 855, 15, 837, 2124, 10, 917, 891, 220, 837, 2659, 7, ...
2.022857
350
<reponame>JohannesNakayama/CellularAutomata.jl using LightGraphs using GraphPlot using Plots using GraphRecipes g = LightGraphs.grid([20, 1], periodic=true) n_start = copy(nv(g)) for v in 1:n_start add_vertex!(g) add_edge!(g, n_start + v, v) end n_new = copy(nv(g)) for v in (n_start + 1):n_new add_edge!(g...
[ 27, 7856, 261, 480, 29, 41, 1219, 1236, 274, 45, 461, 323, 1689, 14, 28780, 934, 38062, 1045, 13, 20362, 198, 3500, 4401, 37065, 82, 198, 3500, 29681, 43328, 198, 3500, 1345, 1747, 198, 3500, 29681, 6690, 18636, 198, 198, 70, 796, 4...
2.205882
204
@testset "307.range-sum-query-mutable.jl" begin @testset "307 case 1" begin ST = SegmentTree([1, 3, 5]) @test sum_range(ST, 1, 3) == 9 update!(ST, 2, 2) @test sum_range(ST, 1, 3) == 8 end end
[ 31, 9288, 2617, 366, 22996, 13, 9521, 12, 16345, 12, 22766, 12, 76, 18187, 13, 20362, 1, 2221, 198, 220, 220, 220, 2488, 9288, 2617, 366, 22996, 1339, 352, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 3563, 796, 1001, 5154, 27...
1.933333
120
abstract type AbstractMarker end struct Marker{N} <: AbstractMarker end const Marker0 = Marker{0} ; const ΚŠβ‚€ = Marker0 const Marker1 = Marker{1} ; const ΚŠβ‚ = Marker1 const Marker2 = Marker{2} ; const ΚŠβ‚‚ = Marker2 const Marker3 = Marker{3} ; const ΚŠβ‚ƒ = Marker3 string(::Type{Marker0}) = "ΚŠβ‚€" ; ...
[ 397, 8709, 2099, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27741, 9704, 263, 886, 198, 220, 220, 220, 220, 220, 220, 220, 220, 2878, 2940, 263, 90, 45, 92, 1279, 25, 27741, 9704, 263, 886, 628, 1...
2.007916
379
import Adapt using OffsetArrays # Adapt an offset CuArray to work nicely with CUDA kernels. Adapt.adapt_structure(to, x::OffsetArray) = OffsetArray(Adapt.adapt(to, parent(x)), x.offsets) # Need to adapt SubArray indices as well. # See: https://github.com/JuliaGPU/Adapt.jl/issues/16 #Adapt.adapt_structure(to, A::SubAr...
[ 11748, 30019, 198, 3500, 3242, 2617, 3163, 20477, 198, 198, 2, 30019, 281, 11677, 14496, 19182, 284, 670, 16576, 351, 29369, 5631, 50207, 13, 198, 48003, 13, 42552, 62, 301, 5620, 7, 1462, 11, 2124, 3712, 34519, 19182, 8, 796, 3242, 2...
2.796053
152
<reponame>jacobusmmsmit/queue-embedded-games-EURSS using Random using StatsBase using Distributions using StatsPlots using DataFrames using ShiftedArrays using Measures Random.seed!(123) begin arrival_rates = (0.1, 0.1) job_size = 10 private_service_rate(job_size) = 1 / (1.5 * job_size) public_service...
[ 27, 7856, 261, 480, 29, 30482, 672, 385, 76, 907, 2781, 14, 36560, 12, 20521, 9395, 12, 19966, 12, 36, 4261, 5432, 198, 3500, 14534, 198, 3500, 20595, 14881, 198, 3500, 46567, 507, 198, 3500, 20595, 3646, 1747, 198, 3500, 6060, 35439,...
2.154333
5,216
# BinDeps integration using BinDeps import BinDeps: PackageManager, can_use, package_available, available_version, libdir, generate_steps, LibraryDependency, provider, provides, pkg_name update_once = true struct RPM <: PackageManager package end can_use(::Type{RPM}) = iswindows() function package_available...
[ 2, 20828, 12156, 82, 11812, 198, 198, 3500, 20828, 12156, 82, 198, 11748, 20828, 12156, 82, 25, 15717, 13511, 11, 460, 62, 1904, 11, 5301, 62, 15182, 11, 1695, 62, 9641, 11, 198, 220, 220, 220, 9195, 15908, 11, 7716, 62, 20214, 11, ...
2.549565
575
module SimpleDelimitedFiles @doc raw""" readdlm(source, [delim::Char = '\t'], [T::Type = Float64]) Read a delimited numerical matrix from the file named `source`. The elements of the matrix should be of type `T`. The end of line delimiter is taken as `\n`. For simple use cases, this is a more performant equivale...
[ 21412, 17427, 13856, 320, 863, 25876, 198, 198, 31, 15390, 8246, 37811, 198, 220, 220, 220, 1100, 25404, 76, 7, 10459, 11, 685, 12381, 320, 3712, 12441, 796, 705, 59, 83, 6, 4357, 685, 51, 3712, 6030, 796, 48436, 2414, 12962, 198, 1...
2.450847
590
using Documenter, UiPathOrchestratorJobSchedulingPlanCreate1 makedocs(; modules=[UiPathOrchestratorJobSchedulingPlanCreate1], format=Documenter.HTML(), pages=[ "Home" => "index.md", "Getting Started" => "getting_started.md", "Function" => "function.md", "Excel" => "excel.md"...
[ 3500, 16854, 263, 11, 471, 72, 15235, 5574, 2395, 2536, 1352, 33308, 50, 1740, 16619, 20854, 16447, 16, 198, 198, 76, 4335, 420, 82, 7, 26, 198, 220, 220, 220, 13103, 41888, 52, 72, 15235, 5574, 2395, 2536, 1352, 33308, 50, 1740, 16...
2.323741
278
export getSensMat """ S = function getSensMat(...) constructs sensitivity matrix. WARNING: For large-scale problems this will be prohibively expensive. Use with caution Inputs: sigma - model pFor - forward problems Examples: S = getSensMat(sigma, pFor) # single pFor Some methods of g...
[ 39344, 651, 50, 641, 19044, 198, 198, 37811, 198, 50, 796, 2163, 651, 50, 641, 19044, 7, 23029, 198, 198, 41571, 82, 14233, 17593, 13, 198, 198, 31502, 25, 1114, 1588, 12, 9888, 2761, 428, 481, 307, 6221, 2280, 198, 220, 220, 220, ...
1.93495
1,691
# `UnionFinder{T <: Integer}` is a graph containing a constant number of nodes # which allows for union-find operations. All nodes are indexed by an integer # of type `T` which is between 1 an the number of internal nodes. mutable struct UnionFinder{T <: Integer} sizes :: Vector{T} parents :: Vector{T} # `...
[ 2, 4600, 38176, 37, 5540, 90, 51, 1279, 25, 34142, 92, 63, 318, 257, 4823, 7268, 257, 6937, 1271, 286, 13760, 198, 2, 543, 3578, 329, 6441, 12, 19796, 4560, 13, 1439, 13760, 389, 41497, 416, 281, 18253, 198, 2, 286, 2099, 4600, 51...
2.489284
1,633
# Code snippets from https://github.com/JuliaLang/Compat.jl function _compat(ex::Expr) if VERSION < v"0.7.0-DEV.2562" if ex.head == :call && ex.args[1] == :finalizer ex.args[2], ex.args[3] = ex.args[3], ex.args[2] end end return Expr(ex.head, map(_compat, ex.args)...) end _com...
[ 198, 2, 6127, 45114, 422, 3740, 1378, 12567, 13, 785, 14, 16980, 544, 43, 648, 14, 40073, 13, 20362, 198, 198, 8818, 4808, 5589, 265, 7, 1069, 3712, 3109, 1050, 8, 198, 220, 220, 220, 611, 44156, 2849, 1279, 410, 1, 15, 13, 22, ...
2.2
240
<filename>src/SparseSymmetricTensors.jl module SparseSymmetricTensors #=------------------------------------------------------------------------------ Main File of the COOTensor class, Only type definitions and Constructor functions should be placed here. ----------------------------------------------------------...
[ 27, 34345, 29, 10677, 14, 50, 29572, 13940, 3020, 19482, 51, 641, 669, 13, 20362, 198, 21412, 1338, 17208, 13940, 3020, 19482, 51, 641, 669, 198, 2, 28, 10097, 26171, 198, 220, 220, 8774, 9220, 286, 262, 7375, 2394, 22854, 1398, 11, ...
2.845924
4,355
<reponame>jinjianzhou/Perturbo.jl using HDF5 ElecHam(fn::String) = ElecHam( (h5open(fn,"r") do fid bdata = load_basic_data(fid) # num_wann = bdata[:num_wann] w_center = bdata[:wannier_center_cryst] lattice = bdata[:at] rdim = bdata[:kc_dim] # hopping = load_electron_wannier(fid, num_wann) w...
[ 27, 7856, 261, 480, 29, 18594, 73, 666, 38536, 14, 47, 861, 333, 2127, 13, 20362, 198, 3500, 5572, 37, 20, 198, 198, 28827, 66, 21281, 7, 22184, 3712, 10100, 8, 796, 15987, 66, 21281, 7, 357, 71, 20, 9654, 7, 22184, 553, 81, 494...
2.046267
951
using LinearAlgebra using Fermi.DIIS # Functions specific to DF-CTF # ############ PREPROCESSING ################ """ Fermi.CoupledCluster.RCCSD{T}(Alg::CTF) Compute a RCCSD wave function using the Compiled time factorization algorithm (CTF) """ function BCCD{T}(guess::BCCD{Tb},Alg::DFCTF) where { T <: AbstractFl...
[ 3500, 44800, 2348, 29230, 198, 3500, 376, 7780, 72, 13, 17931, 1797, 198, 198, 2, 40480, 2176, 284, 36323, 12, 4177, 37, 198, 2, 198, 7804, 4242, 22814, 4805, 4503, 7597, 2751, 1303, 7804, 4242, 21017, 198, 37811, 198, 220, 220, 220, ...
1.496855
3,657
<reponame>shashi/Homework.jl<filename>src/encode.jl encode(metadata, x) = x encode(metadata, x::Dict) = [(encode(metadata, k), encode(metadata, v)) for (k, v) in x] |> sort encode(metadata, x::Union{AbstractArray, Tuple}) = map(y -> encode(metadata, y), x) function encode(metadata, x::Real) precision = ...
[ 27, 7856, 261, 480, 29, 1477, 12144, 14, 28718, 6433, 13, 20362, 27, 34345, 29, 10677, 14, 268, 8189, 13, 20362, 198, 198, 268, 8189, 7, 38993, 11, 2124, 8, 796, 2124, 198, 198, 268, 8189, 7, 38993, 11, 2124, 3712, 35, 713, 8, 7...
2.47479
238
<reponame>xinkai-zhou/MixedModelsBLB.jl<filename>test/test-blb.jl<gh_stars>1-10 module BLB # Test that the BLB functions work properly using MixedModelsBLB, Random, Distributions, DataFrames, StatsModels, Ipopt, Test, StableRNGs, WiSER # Simulate a dataset # Ξ²true = ones(3); σ²true = 1; Ξ£true = [1.0 0; 0 1.0] rng =...
[ 27, 7856, 261, 480, 29, 87, 676, 1872, 12, 38536, 14, 44, 2966, 5841, 1424, 9148, 33, 13, 20362, 27, 34345, 29, 9288, 14, 9288, 12, 2436, 65, 13, 20362, 27, 456, 62, 30783, 29, 16, 12, 940, 198, 21412, 9878, 33, 198, 198, 2, 6...
2.025565
2,347
<filename>scripts/RotaLegacy.jl using Pkg Pkg.activate(Base.current_project()) cd("..") # This environment is for development ############################################################# #begin # using PyPlot # using LaTeXStrings # #matplotlib.use("TkAgg") #To use in Pluto.jl # rc("text", usetex = true) ...
[ 27, 34345, 29, 46521, 14, 49, 4265, 11484, 1590, 13, 20362, 198, 3500, 350, 10025, 198, 47, 10025, 13, 39022, 7, 14881, 13, 14421, 62, 16302, 28955, 198, 198, 10210, 7203, 492, 4943, 198, 198, 2, 770, 2858, 318, 329, 2478, 1303, 291...
1.721705
3,331
<gh_stars>10-100 # This file is auto-generated by AWSMetadata.jl using AWS using AWS.AWSServices: appconfig using AWS.Compat using AWS.UUIDs """ create_application(name) create_application(name, params::Dict{String,<:Any}) An application in AppConfig is a logical unit of code that provides capabilities for yo...
[ 27, 456, 62, 30783, 29, 940, 12, 3064, 198, 2, 770, 2393, 318, 8295, 12, 27568, 416, 30865, 9171, 14706, 13, 20362, 198, 3500, 30865, 198, 3500, 30865, 13, 12298, 5432, 712, 1063, 25, 598, 11250, 198, 3500, 30865, 13, 40073, 198, 35...
2.878504
17,696
using Markowitz using LinearAlgebra import Plots assets = [ "Bonds - US Government" "Bonds - US Corporate" "Bonds - International" "Bonds - High Yield" "Bonds - Bank Loans" "Bonds - Emerging USD Debt" "Bonds - Emerging Local Debt" "Alternativ...
[ 3500, 2940, 20951, 198, 3500, 44800, 2348, 29230, 198, 11748, 1345, 1747, 198, 198, 19668, 796, 685, 366, 33, 24764, 532, 1294, 5070, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 33, 24764, 532, 1294, 26040, 1, 198...
1.831289
3,343
<filename>examples/CHD_preventative_care.jl using Logging using JuMP, Gurobi using DecisionProgramming using CSV, DataFrames, PrettyTables # Setting subproblem specific parameters const chosen_risk_level = "12%" # Reading tests' technical performance data (dummy data in this case) data = CSV.read("CHD_preventative...
[ 27, 34345, 29, 1069, 12629, 14, 3398, 35, 62, 3866, 1151, 876, 62, 6651, 13, 20362, 198, 3500, 5972, 2667, 198, 3500, 12585, 7378, 11, 402, 1434, 8482, 198, 3500, 26423, 15167, 2229, 198, 3500, 44189, 11, 6060, 35439, 11, 20090, 51, ...
2.464156
3,027
import Pkg Pkg.instantiate() Pkg.add("Statistics") Pkg.add("DataFrames") Pkg.add("CSV") Pkg.add("StatsBase") using DataFrames, CSV, Statistics, StatsBase data = CSV.read("../externals/Core.Math.Data/data/Pejcic_318.csv", copycols = true) # describe(data[:ATT]) for col in eachcol(data); if (eltype(col[2]) <: Re...
[ 11748, 350, 10025, 198, 47, 10025, 13, 8625, 415, 9386, 3419, 198, 198, 47, 10025, 13, 2860, 7203, 48346, 4943, 198, 47, 10025, 13, 2860, 7203, 6601, 35439, 4943, 198, 47, 10025, 13, 2860, 7203, 7902, 53, 4943, 198, 47, 10025, 13, 2...
2.407895
152
<gh_stars>1-10 module KRPC using Sockets using ProtoBuf using LightXML import MacroTools include("proto/krpc.jl") abstract type Request{S, P, R} end """ KRPC stream listener. See `add_stream` for usage information. """ struct Listener{T} streams::Dict{UInt64, Pair{Request, Int}} connection::T current_value chann...
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 21412, 29430, 5662, 198, 3500, 311, 11603, 198, 3500, 45783, 33, 3046, 198, 3500, 4401, 55, 5805, 198, 11748, 42755, 33637, 198, 198, 17256, 7203, 1676, 1462, 14, 38584, 14751, 13, 20362, 4943...
2.756522
460
function velToConductMod(v,mid,a,b) d = (b-a)./2.0; dinv = 10; tt = dinv.*(mid - v); t = (d.*(tanh.(tt)+1) + a); dt = -(dinv*d)*(sech.(tt)).^2; dt = (2.0-v./mid).*dt + (-1./mid).*t; t = t.*(2.0-v./mid); return vec(t),spdiagm(vec(dt)) end
[ 8818, 11555, 2514, 34, 12920, 5841, 7, 85, 11, 13602, 11, 64, 11, 65, 8, 201, 198, 67, 796, 357, 65, 12, 64, 737, 14, 17, 13, 15, 26, 201, 198, 67, 16340, 796, 838, 26, 201, 198, 926, 796, 16278, 85, 15885, 7, 13602, 532, 41...
1.69863
146
<filename>test/MOI_wrapper_cached.jl using MathOptInterface const MOI = MathOptInterface const MOIB = MOI.Bridges const MOIT = MOI.Test const MOIU = MOI.Utilities MOIU.@model(ModelData, (), (MOI.EqualTo, MOI.GreaterThan, MOI.LessThan, MOI.Interval), (MOI.SecondOrderCone,), ...
[ 27, 34345, 29, 9288, 14, 11770, 40, 62, 48553, 62, 66, 2317, 13, 20362, 198, 3500, 16320, 27871, 39317, 198, 9979, 13070, 40, 796, 16320, 27871, 39317, 198, 9979, 13070, 9865, 796, 13070, 40, 13, 33, 32124, 198, 9979, 13070, 2043, 796...
2.135608
1,143
#""" #""" #function writevtk( # trian::Grid, filebase; celldata=Dict(), nodaldata=Dict()) # write_vtk_file(trian,filebase,celldata=celldata,nodaldata=nodaldata) #end """ writevtk(reffe::LagrangianRefFE,filebase) """ function writevtk(reffe::LagrangianRefFE,filebase) p = get_polytope(reffe) writevtk(p,fileb...
[ 198, 2, 37811, 198, 2, 37811, 198, 2, 8818, 3551, 85, 30488, 7, 198, 2, 220, 1333, 272, 3712, 41339, 11, 2393, 8692, 26, 2685, 7890, 28, 35, 713, 22784, 18666, 1940, 1045, 28, 35, 713, 28955, 198, 2, 220, 3551, 62, 85, 30488, 62...
2.037453
5,794
using MathOptInterface const MOI = MathOptInterface const VI = MOI.VariableIndex const CI = MOI.ConstraintIndex const SVF = MOI.SingleVariable function var_bounds(o::SCIP.Optimizer, vi::VI) return MOI.get(o, MOI.ConstraintSet(), CI{SVF,MOI.Interval{Float64}}(vi.value)) end function chg_bounds(o::SCIP.Optimizer, ...
[ 3500, 16320, 27871, 39317, 198, 9979, 13070, 40, 796, 16320, 27871, 39317, 198, 198, 9979, 13889, 796, 13070, 40, 13, 43015, 15732, 198, 9979, 14514, 796, 13070, 40, 13, 3103, 2536, 2913, 15732, 198, 9979, 20546, 37, 796, 13070, 40, 13,...
2.216329
11,954
<gh_stars>1-10 using ConvDiffMIPDECO using jInv.Mesh using jInv.ForwardShare using jInv.InverseSolve using jInv.LinearSolvers using MUMPSjInv using MAT using LinearAlgebra using SparseArrays # filename= "2DmodelLShaped.mat" filename= joinpath(dirname(pathof(ConvDiffMIPDECO)),"..","examples","Sources3D") file = matread...
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 3500, 34872, 28813, 44, 4061, 41374, 46, 198, 3500, 474, 19904, 13, 37031, 198, 3500, 474, 19904, 13, 39746, 11649, 198, 3500, 474, 19904, 13, 818, 4399, 50, 6442, 198, 3500, 474, 19904, 13,...
2.048919
1,758
<reponame>sadit/TextSearch.jl # This file is a part of TextSearch.jl ##### using CategoricalArrays export EntropyWeighting """ EntropyWeighting(; smooth=0.0, lowerweight=0.0, weights=:balance) Entropy weighting uses the empirical entropy of the vocabulary along classes to produce a notion of importance for each ...
[ 27, 7856, 261, 480, 29, 82, 324, 270, 14, 8206, 18243, 13, 20362, 198, 2, 770, 2393, 318, 257, 636, 286, 8255, 18243, 13, 20362, 198, 198, 4242, 2, 198, 3500, 327, 2397, 12409, 3163, 20477, 198, 39344, 7232, 28338, 25844, 278, 198, ...
2.240442
1,177
<reponame>odow/SetProg.jl using SetProg using Documenter, Literate const EXAMPLES_DIR = joinpath(@__DIR__, "src", "examples") const OUTPUT_DIR = joinpath(@__DIR__, "src/generated") const EXAMPLES = readdir(EXAMPLES_DIR) for example in EXAMPLES example_filepath = joinpath(EXAMPLES_DIR, example) Literate.mar...
[ 27, 7856, 261, 480, 29, 375, 322, 14, 7248, 2964, 70, 13, 20362, 198, 3500, 5345, 2964, 70, 198, 3500, 16854, 263, 11, 17667, 378, 198, 198, 9979, 7788, 2390, 6489, 1546, 62, 34720, 796, 4654, 6978, 7, 31, 834, 34720, 834, 11, 366...
2.191837
490
# Parts of this code were taken / derived from Graphs.jl. See LICENSE for # licensing details. type FloydWarshallState{T}<:AbstractPathState dists::Matrix{T} parents::Matrix{Int} end doc"""Uses the [Floyd-Warshall algorithm](http://en.wikipedia.org/wiki/Floyd–Warshall_algorithm) to compute shortest paths bet...
[ 2, 22349, 286, 428, 2438, 547, 2077, 1220, 10944, 422, 29681, 82, 13, 20362, 13, 4091, 38559, 24290, 329, 198, 2, 15665, 3307, 13, 628, 198, 4906, 21150, 54, 5406, 439, 9012, 90, 51, 92, 27, 25, 23839, 15235, 9012, 198, 220, 220, ...
2.055644
1,258
<reponame>lightbearer88/Batman.jl<filename>src/toolbelt/mcmcsampler.jl using Random mutable struct MCMCSample pdf end function _transition_model(x) randn()*0.1 + x end function _acceptance(v, vnew, x, y) if (x<-1) || (x>1) || (y<-1) || (y>1) return false end if vnew < v return true else accep...
[ 27, 7856, 261, 480, 29, 2971, 1350, 11258, 3459, 14, 37039, 13, 20362, 27, 34345, 29, 10677, 14, 25981, 37976, 14, 76, 11215, 6359, 321, 20053, 13, 20362, 198, 3500, 14534, 198, 198, 76, 18187, 2878, 13122, 44, 7902, 1403, 198, 220, ...
2.315789
209
export IntRangeDict, save import Base: push!, in, show, foreach, collect, getindex, read, write type IntRangeSpan{K<:Integer, V} lv::K rv::K data::Vector{V} end immutable IntRangeDict{K<:Integer, V} data::Vector{IntRangeSpan{K, V}} IntRangeDict(data::Vector=[]) = new(data) IntRangeDict(io::IO...
[ 39344, 2558, 17257, 35, 713, 11, 3613, 198, 198, 11748, 7308, 25, 4574, 28265, 287, 11, 905, 11, 1674, 620, 11, 2824, 11, 651, 9630, 11, 1100, 11, 3551, 198, 198, 4906, 2558, 17257, 4561, 272, 90, 42, 27, 25, 46541, 11, 569, 92, ...
1.84935
2,383
#**************************************************************************** # Molecular Dynamics Potentials (MDP) # CESMIX-MIT Project # # Contributing authors: <NAME> (<EMAIL>, <EMAIL>) #************************************************...
[ 2, 17174, 17174, 46068, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, ...
2.305804
448
using PlanktonIndividuals, Serialization grid = RectilinearGrid(size = (16, 16, 1), x = (0,32), y = (0,32), z = (0,-32)) model = PlanktonModel(CPU(), grid) function tot_mass(nut, g) mass = zeros(g.Nx, g.Ny, g.Nz) for i in 1:g.Nx for j in 1:g.Ny for k in 1:g.Nz mass[i,j,k]...
[ 3500, 1345, 962, 1122, 35392, 82, 11, 23283, 1634, 198, 198, 25928, 796, 48599, 346, 259, 451, 41339, 7, 7857, 796, 357, 1433, 11, 1467, 11, 352, 828, 2124, 796, 357, 15, 11, 2624, 828, 331, 796, 357, 15, 11, 2624, 828, 1976, 796,...
1.887755
784
using Dash app = dash() app.layout = html_div(id="outer-div") do html_div("A div", id="first-inner-div"), html_br(), html_div("Another div", id="second-inner-div") end run_server(app)
[ 3500, 16189, 198, 198, 1324, 796, 14470, 3419, 198, 1324, 13, 39786, 796, 27711, 62, 7146, 7, 312, 2625, 39605, 12, 7146, 4943, 466, 198, 220, 220, 220, 27711, 62, 7146, 7203, 32, 2659, 1600, 4686, 2625, 11085, 12, 5083, 12, 7146, 1...
2.444444
81
<filename>src/Mesh/elementiterator.jl """ struct ElementIterator{E,M} Return an iterator for iterating over all elements of type `E` on objects of type `M`. """ struct ElementIterator{E,M} <: AbstractVector{E} mesh::M end ElementIterator{E}(mesh::M) where {E,M <: AbstractMesh} = ElementIterator{E,M}(mesh) E...
[ 27, 34345, 29, 10677, 14, 37031, 14, 30854, 48727, 13, 20362, 198, 37811, 198, 220, 220, 220, 2878, 11703, 37787, 90, 36, 11, 44, 92, 198, 198, 13615, 281, 41313, 329, 11629, 803, 625, 477, 4847, 286, 2099, 4600, 36, 63, 319, 5563, ...
2.140878
1,732
expert = haskey(ENV, "QUEST_EXPERT") && ENV["QUEST_EXPERT"] == "1" ? true : false # Execute commands to build QuEST function _auxBuild(makePrecision::Int,precision::String,isWindows::Bool)::Nothing mkdir("build"*precision) cd("build"*precision) isWindows ? wait(run(`cmake -DPRECISION=$makePrecision .. -G...
[ 1069, 11766, 796, 468, 2539, 7, 1677, 53, 11, 366, 35780, 62, 49864, 17395, 4943, 11405, 12964, 53, 14692, 35780, 62, 49864, 17395, 8973, 6624, 366, 16, 1, 5633, 2081, 1058, 3991, 220, 198, 198, 2, 8393, 1133, 9729, 284, 1382, 2264, ...
2.373684
380
""" Force (re-)evaluation of the objective value at `x`. Returns `f(x)` and stores the value in `obj.F` """ function value!!(obj::AbstractObjective, x) obj.f_calls .+= 1 copyto!(obj.x_f, x) obj.F = obj.f(x) value(obj) end """ Evaluates the objective value at `x`. Returns `f(x)`, but does *not* store t...
[ 37811, 198, 10292, 357, 260, 25106, 18206, 2288, 286, 262, 9432, 1988, 379, 4600, 87, 44646, 198, 198, 35561, 4600, 69, 7, 87, 8, 63, 290, 7000, 262, 1988, 287, 4600, 26801, 13, 37, 63, 198, 37811, 198, 8818, 1988, 3228, 7, 26801, ...
2.143613
2,646
# ------------------ CMAX agent ------------------------ struct MountainCarCMAXAgent mountaincar::MountainCar cmax_planner::MountainCarCMAXPlanner end function run(agent::MountainCarCMAXAgent; max_steps = 1e5) state = init(agent.mountaincar; cont = true) num_steps = 0 while !checkGoal(agent.mounta...
[ 2, 34400, 438, 327, 22921, 5797, 220, 22369, 220, 198, 7249, 9638, 9914, 34, 22921, 36772, 198, 220, 220, 220, 8598, 7718, 3712, 44, 18635, 9914, 198, 220, 220, 220, 269, 9806, 62, 11578, 1008, 3712, 44, 18635, 9914, 34, 22921, 20854,...
2.192901
648
<gh_stars>0 const DEBUG = true """ @dbgassert(expr, [message]) -> true If `DEBUG = true`, throws an error with an optionally specified `message` if the given code expression evaluates to `false`, otherwise returns `true`. """ macro dbgassert(expr, msgs...) if DEBUG msg_str = isempty(msgs) ? string(exp...
[ 27, 456, 62, 30783, 29, 15, 198, 9979, 16959, 796, 2081, 198, 198, 37811, 198, 220, 220, 220, 2488, 9945, 70, 30493, 7, 31937, 11, 685, 20500, 12962, 4613, 2081, 198, 198, 1532, 4600, 30531, 796, 2081, 47671, 12542, 281, 4049, 351, ...
2.697329
337
<filename>src/Wavg.jl Wavg(a,w) = sum(w.*a)/sum(w)
[ 27, 34345, 29, 10677, 14, 54, 615, 70, 13, 20362, 198, 54, 615, 70, 7, 64, 11, 86, 8, 796, 2160, 7, 86, 15885, 64, 20679, 16345, 7, 86, 8 ]
1.666667
30
<gh_stars>1-10 """ Arrow `enum` type that can take three values: `In`, `Out`, or `Neither`, representing a directionality associated with an index, i.e. the index leg is directed into or out of a given tensor """ @enum Arrow In=-1 Out=1 Neither=0 """ -(dir::Arrow) Reverse direction of a directed `Arrow`. """ f...
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 198, 37811, 198, 220, 220, 19408, 198, 63, 44709, 63, 2099, 326, 460, 1011, 1115, 3815, 25, 4600, 818, 47671, 4600, 7975, 47671, 393, 4600, 27270, 47671, 10200, 257, 4571, 1483, 198, 32852, ...
2.960938
128
<filename>julia-package/brainflow/src/c_interfaces.jl<gh_stars>100-1000 using Pkg using Pkg.Artifacts using SHA using Tar # we have an issue with unpack(), so wrote a custom download # https://discourse.julialang.org/t/unable-to-automatically-install-artifact/51984/2 function download_brainflow_artifact() url = b...
[ 27, 34345, 29, 73, 43640, 12, 26495, 14, 27825, 11125, 14, 10677, 14, 66, 62, 3849, 32186, 13, 20362, 27, 456, 62, 30783, 29, 3064, 12, 12825, 198, 3500, 350, 10025, 198, 3500, 350, 10025, 13, 8001, 37199, 198, 3500, 25630, 198, 350...
2.848525
746
quad_params = (m=0.5, J=SMatrix{3,3}(Diagonal([0.0023, 0.0023, 0.004])), Jinv=SMatrix{3,3}(Diagonal(1.0./[0.0023, 0.0023, 0.004])), gravity=SVector(0,0,-9.81), motor_dist=0.1750, kf=1.0, km=0.0245) include("quaternions.jl") function quadroto...
[ 47003, 62, 37266, 796, 357, 76, 28, 15, 13, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 449, 28, 12310, 265, 8609, 90, 18, 11, 18, 92, 7, 18683, 27923, 26933, 15, 13, 405, 1954, 11, 657, 13, 405, ...
1.875212
1,178
<reponame>akels/Verificatum.jl using Test using ShuffleProofs: marshal_s_Gq, unmarshal, decode s_Gq = "ModPGroup(safe-prime modulus=2*order+1. order bit-length = 511)::00000000020100000020636f6d2e766572696669636174756d2e61726974686d2e4d6f645047726f757000000000040100000041009a91c3b704e382e0c772fa7cf0e5d6363edc53d156e84...
[ 27, 7856, 261, 480, 29, 539, 7278, 14, 13414, 811, 21307, 13, 20362, 198, 3500, 6208, 198, 3500, 911, 18137, 44683, 82, 25, 22397, 282, 62, 82, 62, 38, 80, 11, 21303, 5406, 282, 11, 36899, 198, 198, 82, 62, 38, 80, 796, 366, 584...
2.012531
399
push!(ARGS, "../../input_files/dynamic/basin_refinement/8GPa/12n.dat") include("../../Basin.jl") pop!(ARGS)
[ 14689, 0, 7, 1503, 14313, 11, 366, 40720, 40720, 15414, 62, 16624, 14, 67, 28995, 14, 12093, 259, 62, 5420, 21828, 14, 23, 16960, 64, 14, 1065, 77, 13, 19608, 4943, 198, 17256, 7203, 40720, 40720, 15522, 259, 13, 20362, 4943, 198, 1...
2.22449
49
<reponame>UnofficialJuliaMirror/Transducers.jl-28d57a85-8fef-5791-bfe6-a80928e7c999<filename>examples/empty_result_handling.jl # # Empty result handling # # Transducible processes such as [`foldl`](@ref) try to # do the right thing even when `init` is not given, _if_ the given # binary operation `step` is supported by ...
[ 27, 7856, 261, 480, 29, 3118, 16841, 16980, 544, 27453, 1472, 14, 8291, 41213, 13, 20362, 12, 2078, 67, 3553, 64, 5332, 12, 23, 69, 891, 12, 3553, 6420, 12, 65, 5036, 21, 12, 64, 34583, 2078, 68, 22, 66, 17032, 27, 34345, 29, 10...
2.049738
1,528
<reponame>JuliaBinaryWrappers/basiclu_jll.jl # Autogenerated wrapper script for basiclu_jll for x86_64-w64-mingw32 export libbasiclu using CompilerSupportLibraries_jll JLLWrappers.@generate_wrapper_header("basiclu") JLLWrappers.@declare_library_product(libbasiclu, "libbasiclu.dll") function __init__() JLLWrappers....
[ 27, 7856, 261, 480, 29, 16980, 544, 33, 3219, 36918, 11799, 14, 35487, 2290, 62, 73, 297, 13, 20362, 198, 2, 5231, 519, 877, 515, 29908, 4226, 329, 4096, 2290, 62, 73, 297, 329, 2124, 4521, 62, 2414, 12, 86, 2414, 12, 2229, 86, ...
2.391489
235
<reponame>RemoteSensingTools/vSmartMOM.jl module SolarModel using ..vSmartMOM # For locating default solar T using DocStringExtensions # For simplifying docstring using DelimitedFiles # For easily reading in solar spectrum using Interpolations # For interpolating solar spectr...
[ 27, 7856, 261, 480, 29, 36510, 50, 26426, 33637, 14, 85, 25610, 44, 2662, 13, 20362, 198, 21412, 12347, 17633, 198, 198, 3500, 11485, 85, 25610, 44, 2662, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, ...
2.347613
2,241
""" InflationConstant <: InflationFunction InflationConstant(c) MetodologΓ­a de inflaciΓ³n constante con valor interanual `c`. """ struct InflationConstant <: InflationFunction c::Float32 end InflationConstant() = InflationConstant(1) # MΓ©todo para obtener la variaciΓ³n interanual constante igual a c fun...
[ 198, 37811, 198, 220, 220, 220, 554, 33521, 3103, 18797, 1279, 25, 554, 33521, 22203, 220, 198, 220, 220, 220, 554, 33521, 3103, 18797, 7, 66, 8, 220, 198, 198, 9171, 375, 928, 29690, 390, 28472, 32009, 18840, 6937, 68, 369, 1188, 2...
2.669841
315
<filename>src/units.jl export SI "Constants written in the same system of physical units." struct UnitSystem name::Symbol "Boltzmann constant." k::Float "Atomic mass unit." AMU::Float UnitSystem(; name::Symbol, k::Number, AMU::Number) = new(name, k, AMU) end "Constants written in SI units" co...
[ 27, 34345, 29, 10677, 14, 41667, 13, 20362, 198, 39344, 25861, 198, 198, 1, 34184, 1187, 3194, 287, 262, 976, 1080, 286, 3518, 4991, 526, 198, 7249, 11801, 11964, 198, 220, 220, 220, 1438, 3712, 13940, 23650, 198, 220, 220, 220, 366, ...
2.36612
183
<gh_stars>10-100 # --- # title: 230. Kth Smallest Element in a BST # id: problem230 # author: Indigo # date: 2021-06-03 # difficulty: Medium # categories: Binary Search, Tree # link: <https://leetcode.com/problems/kth-smallest-element-in-a-bst/description/> # hidden: true # --- # # Given a binary search tree, write a ...
[ 27, 456, 62, 30783, 29, 940, 12, 3064, 198, 2, 11420, 198, 2, 3670, 25, 18395, 13, 509, 400, 10452, 395, 11703, 287, 257, 44992, 198, 2, 4686, 25, 1917, 19214, 198, 2, 1772, 25, 40673, 198, 2, 3128, 25, 33448, 12, 3312, 12, 3070...
2.100143
699
export AbstractGroup """ AbstractGroup Abstract type for abstract groups. Currently the only subtype is `FiniteGroup`. """ abstract type AbstractGroup end
[ 39344, 27741, 13247, 198, 198, 37811, 198, 220, 220, 220, 27741, 13247, 198, 198, 23839, 2099, 329, 12531, 2628, 13, 16888, 262, 691, 850, 4906, 318, 4600, 37, 9504, 13247, 44646, 198, 37811, 198, 397, 8709, 2099, 27741, 13247, 886, 198...
3.926829
41
<gh_stars>10-100 function generate_satisfy(domain::Domain, state::State, domain_type::Symbol, state_type::Symbol) satisfy_def = quote function check(::$domain_type, state::$state_type, term::Const) return getfield(state, term.name) end function check(dom...
[ 27, 456, 62, 30783, 29, 940, 12, 3064, 198, 8818, 7716, 62, 82, 17403, 88, 7, 27830, 3712, 43961, 11, 1181, 3712, 9012, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220,...
2.055671
1,922
<reponame>sethaxen/PlutoStaticHTMLDemo.jl<gh_stars>0 using PlutoStaticHTMLDemo using Test @testset "PlutoStaticHTMLDemo.jl" begin # Write your tests here. end
[ 27, 7856, 261, 480, 29, 2617, 71, 897, 268, 14, 3646, 9390, 45442, 28656, 11522, 78, 13, 20362, 27, 456, 62, 30783, 29, 15, 198, 3500, 32217, 45442, 28656, 11522, 78, 198, 3500, 6208, 198, 198, 31, 9288, 2617, 366, 3646, 9390, 45442...
2.603175
63
<filename>src/cubehelix.jl # following # https://www.mrao.cam.ac.uk/~dag/CUBEHELIX/ # # published in # <NAME>., 2011, `A colour scheme for the display of astronomical intensity images', Bulletin of the Astronomical Society of India, 39, 289. # (2011BASI...39..289G at ADS.) import Colors: RGB # parameters: N n...
[ 27, 34345, 29, 10677, 14, 40296, 2978, 844, 13, 20362, 198, 198, 2, 1708, 198, 2, 220, 3740, 1378, 2503, 13, 76, 430, 78, 13, 20991, 13, 330, 13, 2724, 14, 93, 67, 363, 14, 34, 10526, 42413, 3698, 10426, 14, 198, 2, 198, 2, 31...
2.129542
633
using JuMP using ParameterJuMP using Polyhedra mutable struct Conitope{T, VT <: AbstractVector{T}, D<:Polyhedra.FullDim} d::D points::Vector{VT} factory::Union{Nothing, JuMP.OptimizerFactory} model::Union{Nothing, JuMP.Model} z::Union{Nothing, Vector{ParameterJuMP.ParameterRef}} t_0::Union{Noth...
[ 3500, 12585, 7378, 198, 3500, 25139, 2357, 33018, 7378, 198, 3500, 12280, 704, 430, 198, 198, 76, 18187, 2878, 1482, 270, 3008, 90, 51, 11, 32751, 1279, 25, 27741, 38469, 90, 51, 5512, 360, 27, 25, 34220, 704, 430, 13, 13295, 29271, ...
2.11383
940
using Nemo # _Fast_ composed sums and composed products of polynomials, # using the algorithm described in: # "Fast computation of special resultants" # by Bostan, Flajolet, Salvy, and Schost # derivative of polynomial derivative(c::Vector) = c[2:end] .* (1:length(c)-1) function polyinv(coeffs::Vector, n...
[ 3500, 22547, 78, 220, 201, 198, 201, 198, 2, 4808, 22968, 62, 13160, 21784, 290, 13160, 3186, 286, 745, 6213, 296, 8231, 11, 201, 198, 2, 1262, 262, 11862, 3417, 287, 25, 220, 201, 198, 2, 366, 22968, 29964, 286, 2041, 1255, 1187, ...
2.091096
1,460
using Makie cmp = :pu_or # sheen = 32.0f0 sheen = 16.0f0 camera_translation = (0.0, 0.0, 0.0) camera_rotation = (0.0, 0.2, 0.0) # xlims = [-0.1, 1.1, -0.1, 1.1, -0.1, 1.1, -0.1, 1.1] # ylims = [-0.1, 1.1, 1.1, -0.1, 1.1, 1.1, -0.1, -0.1] # zlims = [ 0.6, 0.6, 0.6, 0.6, -0.6, -0.6, -0.6, -0.6] lim = FRect3...
[ 3500, 15841, 494, 198, 198, 48991, 796, 1058, 19944, 62, 273, 198, 2, 673, 268, 796, 3933, 13, 15, 69, 15, 198, 7091, 268, 796, 1467, 13, 15, 69, 15, 198, 25695, 62, 41519, 796, 357, 15, 13, 15, 11, 657, 13, 15, 11, 657, 13, ...
1.905355
1,606
using LayoutPointers, ArrayInterface, Aqua, Test @testset "LayoutPointers.jl" begin Aqua.test_all(LayoutPointers) println("Grouped Strided Pointers") @time @testset "Grouped Strided Pointers" begin M, K, N = 4, 5, 6 A = Matrix{Float64}(undef, M, K); B = Matrix{Float64}(undef, K, N); C = Matrix...
[ 3500, 47639, 18833, 20193, 11, 15690, 39317, 11, 24838, 11, 6208, 198, 198, 31, 9288, 2617, 366, 32517, 18833, 20193, 13, 20362, 1, 2221, 198, 220, 24838, 13, 9288, 62, 439, 7, 32517, 18833, 20193, 8, 198, 220, 220, 198, 220, 44872, ...
2.167254
1,704
#= Given an array of time intervals (start, end) for classroom lectures (possibly overlapping), find the minimum number of rooms required. For example, given [(30, 75), (0, 50), (60, 150)], you should return 2. =# function number_of_rooms_required(lecture_intervals::Array{Tuple{Int64,Int64},1}) if length(lecture_...
[ 2, 28, 198, 15056, 281, 7177, 286, 640, 20016, 357, 9688, 11, 886, 8, 329, 15806, 25917, 357, 39363, 32997, 828, 1064, 262, 5288, 1271, 286, 9519, 2672, 13, 198, 198, 1890, 1672, 11, 1813, 47527, 1270, 11, 5441, 828, 357, 15, 11, ...
2.38642
810
""" Some bit manipulation routines. """ module Bits """ hyperfloor(x) Heighest power of 2 that is smaller than `x`. # Example ```jldoctest julia> bitstring(UInt8(123)) "01111011" julia> bitstring(UInt8(GraphIdx.Bits.hyperfloor(123))) "01000000" ``` """ hyperfloor(x::Integer) = Base._prevpow2(x) end
[ 37811, 198, 4366, 1643, 17512, 31878, 13, 198, 37811, 198, 21412, 44733, 198, 198, 37811, 198, 220, 220, 220, 8718, 28300, 7, 87, 8, 198, 198, 1544, 328, 3634, 1176, 286, 362, 326, 318, 4833, 621, 4600, 87, 44646, 198, 198, 2, 17934...
2.40458
131
function get_jacobian(obj::DenseWeightedEvaluation) return jcall(obj, "getJacobian", RealMatrix, ()) end function get_point(obj::DenseWeightedEvaluation) return jcall(obj, "getPoint", RealVector, ()) end function get_residuals(obj::DenseWeightedEvaluation) return jcall(obj, "getResiduals", RealVector, ())...
[ 8818, 651, 62, 30482, 672, 666, 7, 26801, 3712, 35, 1072, 25844, 276, 36, 2100, 2288, 8, 198, 220, 220, 220, 1441, 474, 13345, 7, 26801, 11, 366, 1136, 46751, 666, 1600, 6416, 46912, 11, 32865, 198, 437, 198, 198, 8818, 651, 62, 4...
2.739496
119
<filename>test/dependecy_parsing/arc_eager/gold_state.jl @testset "GoldState" begin tree = build_gold_tree() config = build_configuration() system = ArcEagerSystem() state = GoldState(tree, config, system) head_in_stack = DependencyParser.DependencyParsing.ArcEager.HEAD_IN_STACK head_in_buffer = Dependency...
[ 27, 34345, 29, 9288, 14, 45841, 721, 88, 62, 79, 945, 278, 14, 5605, 62, 68, 3536, 14, 24267, 62, 5219, 13, 20362, 198, 31, 9288, 2617, 366, 13306, 9012, 1, 2221, 198, 220, 5509, 796, 1382, 62, 24267, 62, 21048, 3419, 198, 220, ...
2.743842
406
module IntegralVerification using Statistics using Random export testIntegral, testExpressions function doStatTest(testvalues, precision; verbose = true) output = Statistics.mean(testvalues),Statistics.std(testvalues) if verbose println("mean = ",output[1]) println("std = ", output[2]) e...
[ 21412, 15995, 1373, 13414, 2649, 198, 198, 3500, 14370, 198, 3500, 14534, 198, 198, 39344, 1332, 34500, 1373, 11, 1332, 38839, 507, 198, 198, 8818, 466, 17126, 14402, 7, 9288, 27160, 11, 15440, 26, 15942, 577, 796, 2081, 8, 198, 220, ...
2.563667
589
module EMLmultiply using DanaTypes using DotPlusInheritance using Reexport @reexport using ...types.EMLtypes import EMLtypes.length include("multiply/Multiply.jl") end
[ 21412, 412, 5805, 16680, 541, 306, 198, 197, 3500, 22937, 31431, 198, 197, 3500, 22875, 17860, 818, 372, 42942, 198, 197, 3500, 797, 39344, 198, 197, 31, 631, 87, 634, 1262, 2644, 19199, 13, 3620, 43, 19199, 198, 197, 11748, 412, 5805...
2.836066
61
using Parameters import Base: length using SparseArrays abstract type AbstractPhase end export AbstractPhase abstract type IdealPhase <: AbstractPhase end export IdealPhase struct EmptyPhase <: AbstractPhase end export EmptyPhase include("Calculators/Ratevec.jl") include("Calculators/Thermovec.jl") include("Reacti...
[ 3500, 40117, 198, 11748, 7308, 25, 4129, 198, 198, 3500, 1338, 17208, 3163, 20477, 198, 198, 397, 8709, 2099, 27741, 35645, 886, 198, 39344, 27741, 35645, 198, 198, 397, 8709, 2099, 41765, 35645, 1279, 25, 27741, 35645, 886, 198, 39344, ...
2.355799
3,190
# Hyper parameters Ο‰s = [1.0, 0.0, 0.0] Ο‰p = 1e-7 # POβ‚„ mean and variance of observations fom WOA18 ΞΌDIPobs3D, σ²DIPobs3D = WorldOceanAtlasTools.fit_to_grid(grd, "POβ‚„") ΞΌDIPobs, σ²DIPobs = ΞΌDIPobs3D[iwet], σ²DIPobs3D[iwet] ΞΌx = (ΞΌDIPobs, missing, missing) σ²x = (σ²DIPobs, missing, missing) Ξ΄convert(x) = @. exp(x) cs = ...
[ 2, 15079, 10007, 198, 49535, 82, 796, 685, 16, 13, 15, 11, 657, 13, 15, 11, 657, 13, 15, 60, 198, 49535, 79, 796, 352, 68, 12, 22, 198, 2, 19922, 158, 224, 226, 1612, 290, 24198, 286, 13050, 277, 296, 370, 23621, 1507, 198, 34...
1.965517
522
<gh_stars>0 module BesselFunctions using AndExport # using GSL # using SpecialFunctions # @xport sphj(n, x) = GSL.sf_bessel_jl(n, x) # @xport sphn(n, x) = GSL.sf_bessel_yl(n, x) # @xport sphhβ‚Š(n, x) = sphj(n, x) + im*sphn(n, x) # @xport sphhβ‚‹(n, x) = sphj(n, x) - im*sphn(n, x) # # @xport sphj(n, x) = sqrt(Ο€/2x) *...
[ 27, 456, 62, 30783, 29, 15, 198, 21412, 347, 7878, 24629, 2733, 198, 198, 3500, 843, 43834, 198, 2, 1262, 46326, 198, 2, 1262, 6093, 24629, 2733, 198, 220, 220, 220, 220, 198, 2, 2488, 87, 634, 599, 71, 73, 7, 77, 11, 2124, 8, ...
1.573301
1,221
export cgnr mutable struct CGNR{vecT,T,Tsparse} <: AbstractLinearSolver S SHWS reg::Regularization cl::vecT rl::vecT zl::vecT pl::vecT vl::vecT xl::vecT Ξ±l::T Ξ²l::T ΞΆl::T weights::vecT enforceReal::Bool enforcePositive::Bool sparseTrafo::Tsparse iterations::Int64 relTol::Float64 z...
[ 39344, 269, 4593, 81, 198, 198, 76, 18187, 2878, 327, 16630, 49, 90, 35138, 51, 11, 51, 11, 33758, 29572, 92, 1279, 25, 27741, 14993, 451, 50, 14375, 198, 220, 311, 198, 220, 6006, 19416, 198, 220, 842, 3712, 40164, 1634, 198, 220, ...
2.048239
3,918
""" isinside(chart, point) -> Bool Returns true is the given point is in the image of the given chart, false otherwise. """ function isinside(cell, point) u = carttobary(cell, point) T = eltype(u) tol = eps(T) * 1e3 w = one(T) for i in 1:dimension(cell) 0+tol < u[i] < 1-tol || return false w -=...
[ 37811, 198, 220, 220, 220, 318, 48787, 7, 40926, 11, 966, 8, 4613, 347, 970, 198, 198, 35561, 2081, 318, 262, 1813, 966, 318, 287, 262, 2939, 286, 262, 1813, 8262, 11, 3991, 4306, 13, 198, 37811, 198, 8818, 318, 48787, 7, 3846, 11...
2.414079
483
module Simulacoes #ExercΓ­cios 39 a 43 estΓ£o inclusos no package# #data structure include("./Data.jl") export Data include("./utotal.jl") export utotal include("./initial-point.jl") export initial_point include("./upair.jl") export upair include("./minimg.jl") export minimg ...
[ 21412, 3184, 377, 330, 3028, 198, 2, 3109, 2798, 8836, 979, 418, 5014, 257, 5946, 1556, 28749, 287, 2527, 418, 645, 5301, 2, 198, 220, 220, 220, 1303, 7890, 4645, 198, 220, 220, 220, 2291, 7, 1911, 14, 6601, 13, 20362, 4943, 198, ...
2.324759
311
<gh_stars>1-10 using Test using MultivariateMoments @testset "VectorizedHermitianMatrix" begin Q = MultivariateMoments.vectorized_hermitian_matrix(Int, (i, j) -> i == j ? i * 2 - 1 : 2 - im, 2, 1:2) @test Q[1:2, 1:2] isa Matrix{Complex{Int}} @test Q[1:2, 1:2] == [1 2 - im; 2 + im 3] @test square_getind...
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 3500, 6208, 198, 3500, 7854, 42524, 29252, 658, 198, 198, 31, 9288, 2617, 366, 38469, 1143, 9360, 2781, 666, 46912, 1, 2221, 198, 220, 220, 220, 1195, 796, 7854, 42524, 29252, 658, 13, 31364...
1.900482
1,246
function runModels( root::String, modelsDict::Dict, dfd::DataFrame=NA) res = OrderedDict() q = Symbol[] cnt=0 for (k,v) in OrderedDict(m=>modelsDict[m][:raneff] for m in [:ipen,:idolocc,:iocc]) for r in v push!(q,k); push!(q,r); cnt=cnt+1 end end x=reshape(q, (2,cnt)) ml = permutedims(x,...
[ 198, 8818, 1057, 5841, 1424, 7, 6808, 3712, 10100, 11, 4981, 35, 713, 3712, 35, 713, 11, 288, 16344, 3712, 6601, 19778, 28, 4535, 8, 198, 220, 220, 581, 796, 14230, 1068, 35, 713, 3419, 198, 220, 220, 10662, 796, 38357, 21737, 198, ...
1.90402
26,193
<filename>src/generator/documentation.jl function print_documentation(io::IO, node::ExprNode, indent, options, members::Bool=false; kwargs...) print_documentation(io, node.cursor, indent, options, members; kwargs...) end const ESCAPE_PATTERN = r"""(\$|\\|"(?=""))""" function print_documentation(io::IO, cursor::C...
[ 27, 34345, 29, 10677, 14, 8612, 1352, 14, 22897, 341, 13, 20362, 198, 198, 8818, 3601, 62, 22897, 341, 7, 952, 3712, 9399, 11, 10139, 3712, 3109, 1050, 19667, 11, 33793, 11, 3689, 11, 1866, 3712, 33, 970, 28, 9562, 26, 479, 86, 22...
2.262215
5,526
# # Using LabelledArrays source code and types to # "pass through" all properties to an underlying # LArray or SLArray. This allows us to write # a new abstract type that *functions* # like a LabelledArray type! # # All code in this file was copied, and modified # from LabelledArrays.jl source code. Their license is...
[ 2, 198, 2, 8554, 3498, 11978, 3163, 20477, 2723, 2438, 290, 3858, 284, 220, 198, 2, 366, 6603, 832, 1, 477, 6608, 284, 281, 10238, 198, 2, 406, 19182, 393, 12419, 19182, 13, 770, 3578, 514, 284, 3551, 220, 198, 2, 257, 649, 12531,...
2.922399
2,268
abstract type Sim end struct POMDPSim <: Sim simulator::Simulator pomdp::POMDP policy::Policy updater::Updater initial_belief::Any initial_state::Any metadata::Dict{Symbol} end problem(sim::POMDPSim) = sim.pomdp struct MDPSim <: Sim simulator::Simulator mdp::MDP policy::Policy...
[ 397, 8709, 2099, 3184, 886, 198, 198, 7249, 350, 2662, 35, 3705, 320, 1279, 25, 3184, 198, 220, 220, 220, 35375, 3712, 8890, 8927, 198, 220, 220, 220, 279, 296, 26059, 3712, 47, 2662, 6322, 198, 220, 220, 220, 2450, 3712, 36727, 198...
2.203583
3,851
<gh_stars>0 @assert begin msh=FinVolMesh{2}() newptind1=add_point!(msh, [0.0, 0.0]) newptind2=add_point!(msh, [1.0, 0.0]) newptind3=add_point!(msh, [0.0, 1.0]) @assert newptind1==1 @assert newptind2==2 @assert newptind3==3 newfaceind1=add_face!(msh, [newptind1, newptind2]) newface...
[ 27, 456, 62, 30783, 29, 15, 198, 31, 30493, 2221, 198, 220, 220, 220, 285, 1477, 28, 18467, 16598, 37031, 90, 17, 92, 3419, 628, 220, 220, 220, 649, 457, 521, 16, 28, 2860, 62, 4122, 0, 7, 907, 71, 11, 685, 15, 13, 15, 11, 6...
1.989529
382
import DataFrames # using InvertedIndices import Luxor import Base import CSV import Printf import Combinatorics import Statistics import StatsBase import Random import Distributions import KernelDensity import SparseArrays import LinearAlgebra, LinearAlgebra.I include(joinpath(WATERFALL_DIR,"src","Figure","Color"...
[ 11748, 6060, 35439, 198, 2, 1262, 554, 13658, 5497, 1063, 198, 11748, 17145, 273, 198, 198, 11748, 7308, 198, 11748, 44189, 198, 11748, 12578, 69, 198, 198, 11748, 955, 8800, 1352, 873, 198, 11748, 14370, 198, 11748, 20595, 14881, 198, ...
2.898402
876
module AbstractLayers export AbstractLayer, AL, forward, backward, parms, βˆ‡parms, idims, odims include("./tensor_dt.jl") using .TensorDT: Tensor ## ====================================================================== ## The Layer Abstraction ## =====================================================================...
[ 21412, 27741, 43, 6962, 198, 198, 39344, 27741, 49925, 11, 8355, 11, 2651, 11, 19528, 11, 1582, 907, 11, 18872, 229, 1845, 907, 11, 4686, 12078, 11, 16298, 12078, 198, 198, 17256, 7, 1911, 14, 83, 22854, 62, 28664, 13, 20362, 4943, ...
3.698198
222
<gh_stars>0 module NumericalRelativity # Tensor # # (array of functions, coordinates, (indices up or down)) -> tensor # T[-1,-1] means lower-lower indices and T[1,1] means up-up # You should be able to find the Rank of tensors # Contracting is possible? At least with a function contract using Symbolics function part...
[ 27, 456, 62, 30783, 29, 15, 198, 21412, 399, 6975, 605, 6892, 22055, 198, 198, 2, 309, 22854, 198, 2, 198, 2, 357, 18747, 286, 5499, 11, 22715, 11, 357, 521, 1063, 510, 393, 866, 4008, 4613, 11192, 273, 198, 2, 309, 58, 12, 16, ...
2.969163
227
using Test, PreallocationTools, ForwardDiff, LinearAlgebra #test for downsizing cache randmat = rand(5, 3) sto = similar(randmat) stod = dualcache(sto) function claytonsample!(sto, Ο„, Ξ±; randmat=randmat) sto = get_tmp(sto, Ο„) sto .= randmat Ο„ == 0 && return sto n = size(sto, 1) for i in 1:n ...
[ 3500, 6208, 11, 3771, 439, 5040, 33637, 11, 19530, 28813, 11, 44800, 2348, 29230, 628, 198, 2, 9288, 329, 21838, 2890, 12940, 198, 25192, 6759, 796, 43720, 7, 20, 11, 513, 8, 198, 301, 78, 796, 2092, 7, 25192, 6759, 8, 198, 301, 3...
2.142012
676
<reponame>trthatcher/DiscriminantAnalysis.jl<filename>test/runtests.jl using Test, LinearAlgebra, Statistics, DiscriminantAnalysis const DA = DiscriminantAnalysis function random_centroids(T::Type{<:AbstractFloat}, m::Int, p::Int) M = zeros(T, p, m) for k = 1:m M[:, k] = T[rand() < 0.5 ? -2k : 2k for ...
[ 27, 7856, 261, 480, 29, 2213, 5562, 2044, 14, 15642, 3036, 42483, 32750, 13, 20362, 27, 34345, 29, 9288, 14, 81, 2797, 3558, 13, 20362, 198, 3500, 6208, 11, 44800, 2348, 29230, 11, 14370, 11, 8444, 3036, 42483, 32750, 198, 198, 9979, ...
1.969251
748
<gh_stars>0 module Symbolic using ModelingToolkit import ModelingToolkit.Constant struct Lag{T,N} variable::T lag::N end #you can't register a constructor so we have to introduce this intermediate. lag(x,i) = Lag(x,i) @register lag(x,i) @variables t x y z function apply(expr::Equation, data) rhs = expr...
[ 27, 456, 62, 30783, 29, 15, 198, 21412, 41327, 4160, 198, 3500, 9104, 278, 25391, 15813, 198, 11748, 9104, 278, 25391, 15813, 13, 3103, 18797, 198, 198, 7249, 21003, 90, 51, 11, 45, 92, 198, 220, 220, 220, 7885, 3712, 51, 198, 220, ...
2.574924
1,635
<filename>src/RKHS/RKHS.jl # Methods for fitting and querying under the RKHS regularization framework. # for univariate inputs. function constructkernelmatrix( X, ΞΈ)::Matrix{Float64} where T # K = Matrix{Float64}(undef,length(X),length(X)) constructkernelmatrix!(K,X,ΞΈ) ...
[ 27, 34345, 29, 10677, 14, 49, 42, 7998, 14, 49, 42, 7998, 13, 20362, 198, 2, 25458, 329, 15830, 290, 42517, 1112, 739, 262, 371, 42, 7998, 3218, 1634, 9355, 13, 198, 198, 2, 329, 555, 42524, 17311, 13, 198, 8818, 5678, 33885, 6759...
1.720969
5,451
<filename>docs/src/examples/emulsion/fluid_species_large-freq.jl<gh_stars>0 # This example is used to generate plots in the paper, "Reflection from a multi-species material and its transmitted effective wavenumber." Proc. R. Soc. (2018): 20170864. # Everything related to ploting has been commented so that this example...
[ 27, 34345, 29, 31628, 14, 10677, 14, 1069, 12629, 14, 368, 15204, 14, 35522, 312, 62, 35448, 62, 11664, 12, 19503, 80, 13, 20362, 27, 456, 62, 30783, 29, 15, 198, 2, 770, 1672, 318, 973, 284, 7716, 21528, 287, 262, 3348, 11, 366, ...
2.475947
977
<filename>time/SPECTplan.jl # SPECTplan.jl using SPECTrecon: SPECTplan using BenchmarkTools: @btime using MATLAB function call_SPECTplan_matlab(mpath, mumap, psfs, dy) mat""" addpath($mpath) SPECTplan_matlab($mumap, $psfs, $dy); """ end function SPECTplan_time() T = Float32 nx = 64 ny =...
[ 27, 34345, 29, 2435, 14, 4303, 9782, 11578, 13, 20362, 198, 2, 6226, 9782, 11578, 13, 20362, 198, 198, 3500, 6226, 9782, 260, 1102, 25, 6226, 9782, 11578, 198, 3500, 25187, 4102, 33637, 25, 2488, 65, 2435, 198, 3500, 36775, 48780, 198...
2.216724
586
# Minimal example that demonstrates robot-robot and robot-target range limits. using SubmodularMaximization using POMDPs using MCTS using PyPlot using Base.Iterators using Printf using Statistics close() steps = 100 horizon = SubmodularMaximization.default_horizon show_observations = false sparse = false num_parti...
[ 2, 1855, 4402, 1672, 326, 15687, 9379, 12, 305, 13645, 290, 9379, 12, 16793, 2837, 7095, 13, 198, 198, 3500, 3834, 4666, 934, 11518, 320, 1634, 198, 3500, 350, 2662, 6322, 82, 198, 3500, 337, 4177, 50, 198, 3500, 9485, 43328, 198, 3...
2.152515
1,849
<filename>test/runtests.jl include("corey.jl") include("grid.jl") include("theis.jl") include("thiem.jl") include("transport.jl")
[ 27, 34345, 29, 9288, 14, 81, 2797, 3558, 13, 20362, 198, 17256, 7203, 7295, 88, 13, 20362, 4943, 198, 17256, 7203, 25928, 13, 20362, 4943, 198, 17256, 7203, 1169, 271, 13, 20362, 4943, 198, 17256, 7203, 400, 26597, 13, 20362, 4943, 19...
2.6
50
# Run tests locally using Pkg Pkg.activate(joinpath(@__DIR__, "..")) # Pkg.test("Algames") Pkg.activate(joinpath(@__DIR__, "../test")) Pkg.activate(joinpath(@__DIR__, "../docs")) # Pkg.add(Pkg.PackageSpec(;name="RobotDynamics", version="0.3.1")) # Pkg.add(Pkg.PackageSpec(;name="TrajectoryOptimization", version="0.4....
[ 2, 5660, 5254, 15726, 198, 3500, 350, 10025, 198, 47, 10025, 13, 39022, 7, 22179, 6978, 7, 31, 834, 34720, 834, 11, 366, 492, 48774, 198, 2, 350, 10025, 13, 9288, 7203, 2348, 19966, 4943, 628, 198, 47, 10025, 13, 39022, 7, 22179, ...
2.373541
257
<filename>test/push_to_non_input.jl using Reactive function standard_push_test(non_input::Signal) m = map(x->2x, non_input) pval = number() push!(non_input, pval) step() @fact value(non_input) --> pval @fact value(m) --> 2pval end facts("Push to non-input nodes") do a = Signal(number(); ...
[ 27, 34345, 29, 9288, 14, 14689, 62, 1462, 62, 13159, 62, 15414, 13, 20362, 198, 3500, 797, 5275, 198, 198, 8818, 3210, 62, 14689, 62, 9288, 7, 13159, 62, 15414, 3712, 11712, 282, 8, 198, 220, 220, 220, 285, 796, 3975, 7, 87, 3784,...
1.873079
1,497