swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40

sort by:
Revision Author Date Message Commit Date
040f3ab Tag v0.2.0-rc1 15 October 2013, 05:58:39 UTC
a963262 Merge branch 'jn/mydocuments' 15 October 2013, 00:36:01 UTC
f291b85 WINDOWS: move user preferences to %HOMEDRIVE%/%HOMEPATH% 15 October 2013, 00:33:31 UTC
14feaa0 Fix slowness of maximum & minimum along dimensions maximum and minimum along dimensions call ``reducedim`` using ``scalarmax`` and ``scalarmin``. That these two statements did not change following the latest update causes at least 10x slow-down for ``maximum(x, d)`` and ``minimum(x, d)``. 15 October 2013, 00:28:19 UTC
1b79ed1 The unit titles (e.g. test groups) weren't getting calculated right for codespeed 14 October 2013, 23:00:44 UTC
8385daa Merge branch 'master' of github.com:JuliaLang/julia 14 October 2013, 22:55:49 UTC
abc5cec fail more cleanly on serialization errors in sending replies 14 October 2013, 22:54:28 UTC
d12e469 Merge branch 'master' of github.com:JuliaLang/julia 14 October 2013, 22:25:47 UTC
c551870 Add spdiagm(v,k) as dscussed in #4503 14 October 2013, 22:25:24 UTC
aeaa9b1 Merge branch 'master' of github.com:JuliaLang/julia Conflicts: base/ordering.jl 14 October 2013, 21:51:35 UTC
25eb81e sorting bounds checks: wrapping a function definition does nothing. Sortperm on Float64 arrays is now 37% faster than it used to be since I've actually removed the bounds checks in nans2left and nans2right. I tried various ways to wrap the lt(::Perm,a,b) call in `@inbounds` but all approaches caused significant slow downs. 14 October 2013, 21:46:08 UTC
f1dc7be Fix indentation. Remove old svds implementation. 14 October 2013, 21:32:22 UTC
78915d2 Merge branch 'master' of github.com:JuliaLang/julia 14 October 2013, 21:30:08 UTC
6e00f44 Merge branch 'master' of github.com:Jutho/julia into Jutho-master Conflicts: base/linalg/arnoldi.jl 14 October 2013, 21:29:21 UTC
83e0050 Update README.windows.md p7zip-full works on ubuntu 14 October 2013, 21:12:31 UTC
579a005 Further changes to eigs (1) ARPACK info flag 1 now results in a warning (maximal number of iterations taken) rather then throwing an error. (2) Added the return value nconv, indicating the number of converged eigenvalues, which is relevant when the maximal number of iterations has been taken before all requested eigenvalues have converged (which no longer leads to an error thanks to (1) ). (3) Modified behavior of eigs such that any input type of matrix is allowed, as long as the type of A overloads the methods size, issym, eltype and can be multiplied with a vector of the same element type. (4) Updated test file accordingly 14 October 2013, 20:57:35 UTC
bc0b382 Merge branch 'master' of github.com:JuliaLang/julia 14 October 2013, 20:49:16 UTC
c49d764 Close #3291 14 October 2013, 20:48:50 UTC
99a8d1d update directory descriptions in README 14 October 2013, 20:44:19 UTC
e9639bd Merge branch 'master' of github.com:JuliaLang/julia into jb/minmax Conflicts: base/ordering.jl 14 October 2013, 20:16:19 UTC
b33614e add lexcmp and lexless for lexicographic comparison step 3 of #4235, closes #4235 14 October 2013, 20:14:35 UTC
c678539 sorting: use `@inbounds` to eliminate bounds checks. Shaved of 7% for sort and 25% for sortperm. 14 October 2013, 20:06:54 UTC
b5b352b allow serializing Tasks that are done or haven't started yet. fixes #4516 14 October 2013, 17:42:35 UTC
8bbc971 Update README.windows.md 14 October 2013, 13:35:54 UTC
63a1409 improve parallelism in require/reload. fixes #4459 14 October 2013, 08:05:16 UTC
76d2b87 Merge branch 'master' of github.com:JuliaLang/julia 13 October 2013, 23:24:35 UTC
51376f6 Pkg.build: this is the long-awaited Pkg.fixup replacement. Fundamentally, it's not really that different. Instead of trying to topologically sort packages, I just install them in alphabetical order and then use depth-first recursion in build to make sure that dependencies are built before the things that depend on them. If two packages depend on each other circularly, then one of them will get build firts, which may not work; we may have to deal with that at some point, but let's worry about that if and when it happens. Philosophically, this change takes the approach that as far as the package installation machinery is concerned, build failures aren't really it's problem – it will run the build script for a package when that package is installed or updated, but if the build script fails, the package is still considered to be installed. A big, red warning is printed for the user so that they know the package is not likely to work, but the package is left installed so that they can go into its directory and try to fix it. This approach seems likely to make installing packages with binary dependencies a lot less annoying. 13 October 2013, 23:22:55 UTC
8be4acc string padding: cpad, fix lpad and rpad (use strwidth not length). The cpad function center pads a string by making appropriate calls to lpad and rpad. The lpad and rpad functions should have been using the strwidth function to determine how many columns strings take up, but before they were incorrectly using `length` instead. 13 October 2013, 22:59:49 UTC
0e37602 warn: remove `depth` keyword, no backtraces; warn(err::Exception). Since it's completely unclear what this does or how to use it, I'm deleting this feature. When `depth=0` backtraces seem to show, while when `depth=1` they don't or something like that. Now we just don't ever show backtraces for warnings. This keyword didn't do anything for the info function since we never print backtraces there. Also added a warn(err::Exception) method that prints an error the way it would look if allowed to kill the current task, but doesn't actually kill the current task. This is useful if catch an error and want to show it to the user but continue running. 13 October 2013, 22:55:38 UTC
c2c7117 Merge pull request #4512 from JuliaLang/anj/permute Allow all integer types in permutation vector 13 October 2013, 20:50:47 UTC
9e6cdf5 Allow all integer types in permutation vector 13 October 2013, 20:02:06 UTC
808f3ad fix #4506 13 October 2013, 19:33:09 UTC
aa29a43 fix #4509 13 October 2013, 19:28:50 UTC
287bac6 Merge branch 'master' of github.com:JuliaLang/julia into jb/minmax 13 October 2013, 18:21:34 UTC
9d396a2 update release notes for min/max changes 13 October 2013, 18:21:13 UTC
2012984 Merge pull request #4502 from magistere/master Fix Matlab/Octave mandelbrot microbenchmark 13 October 2013, 18:11:58 UTC
7a04e71 Merge pull request #4504 from bartolsthoorn/patch-1 Update Pkg1 to Pkg.generate in docs solves #4500 13 October 2013, 17:19:57 UTC
240b8e2 Update Pkg1 to Pkg.generate in docs solves #4500 13 October 2013, 17:03:44 UTC
2194556 Fix Matlab/Octave mandelbrot microbenchmark 13 October 2013, 15:37:01 UTC
29c8f3c Pkg.update: call Base.with_env (not an exported function yet) 12 October 2013, 22:50:47 UTC
7d5f80c step 2 for #4235 make minimum and maximum use scalarmin and scalarmax, which are min and max but exclude arrays remove isless for AbstractArray add LexicographicOrdering and use it in sortrows and sortcols currently LexicographicOrdering is implemented with cmp(), which does the right thing for arrays, but we might not want to keep it that way 12 October 2013, 22:12:39 UTC
7dfa093 with_env(key,val): temporarily set and restore an evironment value. Use this to fix #4494 — older gits don't support merge --no-edit. 12 October 2013, 21:58:41 UTC
7b437bb Makefile: Windows dep urls 12 October 2013, 21:16:43 UTC
85b440c Merge branch 'master' of github.com:JuliaLang/julia into jb/minmax 12 October 2013, 20:18:32 UTC
61867d3 fix #4487 12 October 2013, 20:14:48 UTC
41afa63 add another eltype definition for String 12 October 2013, 18:39:39 UTC
a7bbc10 Merge pull request #4493 from ivarne/eltype_string Added eltype(::String) fixes #4491 12 October 2013, 18:37:11 UTC
3cbe189 add test for #4486 12 October 2013, 18:29:49 UTC
c36f885 Added eltype(::String) fixes #4491 12 October 2013, 18:25:11 UTC
9a13b83 fix #4482 12 October 2013, 18:23:49 UTC
9b127c4 Merge pull request #4489 from magistere/master Complete fix #4478 12 October 2013, 17:31:51 UTC
0619509 Merge pull request #4490 from magistere/ys/micro Fix pisum and mandelbrot microbenchmarks 12 October 2013, 16:25:05 UTC
f7832ed Fix pisum and mandelbrot microbenchmarks 12 October 2013, 15:27:02 UTC
2afb44f Complete fix #4478 12 October 2013, 09:30:24 UTC
59256c2 fix #4486 12 October 2013, 05:19:52 UTC
ecdb0a5 test/sorting.jl: remove usages of `order` keyword. 11 October 2013, 21:49:18 UTC
5f9bbbe rename methods of min and max that do reductions to minimum and maximum this is step 1 for #4235 11 October 2013, 19:27:29 UTC
ad6903e ordering: deprecate the `order` keyword for ordering-related functions. 11 October 2013, 19:02:32 UTC
8bde376 Pkg: rename Entry._resolve => Entry.resolve 11 October 2013, 18:02:08 UTC
df8321e Pkg: reconsidered coupling versioning of Julia with metadata formats. 11 October 2013, 16:17:46 UTC
1817f45 Pkg: make release-0.2 the current METADATA branch. 11 October 2013, 16:14:11 UTC
cae8668 fix #3486 since size(a,d) supports d > ndims(a), this should be allowed in general 11 October 2013, 06:31:39 UTC
44598ef simplify implementation of os test macros 11 October 2013, 05:35:34 UTC
074222f try to fix #4478 11 October 2013, 04:14:49 UTC
0af03c3 improve performance of vcat and hcat of numbers of different types helps #4467 11 October 2013, 00:39:05 UTC
79aba27 Merge branch 'master' of github.com:JuliaLang/julia 10 October 2013, 23:02:08 UTC
2238cee fix "import ...x" where the final symbol does not refer to a module 10 October 2013, 23:01:04 UTC
88b9612 Merge pull request #4471 from malmaud/sublime Somewhat corrected handling of () and {} in type syntax highlighting in textmate bundle 10 October 2013, 21:17:13 UTC
afd47d8 Merge pull request #4472 from magistere/master Fix broken link to SuiteSparse 10 October 2013, 11:56:27 UTC
a1b7bb6 Fix broken link to SuiteSparse 10 October 2013, 11:15:30 UTC
38013c1 fix #4457 10 October 2013, 05:21:03 UTC
28c02c5 Merge branch 'master' of github.com:JuliaLang/julia 10 October 2013, 05:13:26 UTC
ce501cb improve apply_type t-function to handle non-type type parameters 10 October 2013, 05:12:56 UTC
f63adf0 somewhat corrected handling of () and {} in type syntax highlighting in textmate bundle 10 October 2013, 04:59:13 UTC
48cba82 Merge pull request #4464 from IainNZ/patch-1 Typo fix in docs 10 October 2013, 03:08:44 UTC
269f604 fix #4465 10 October 2013, 03:06:11 UTC
2e5242a Pkg: export public API functions. 09 October 2013, 23:17:29 UTC
bf72ad7 Typo fix in docs 09 October 2013, 22:11:19 UTC
f969628 Merge pull request #4456 from simonster/more-4453 Tweak function names for internal map functions 09 October 2013, 20:33:07 UTC
ac4d42f Merge pull request #4462 from magistere/patch-1 Fix error in `atanh` description 09 October 2013, 19:24:59 UTC
d893b1d Fix error in `atanh` description 09 October 2013, 18:41:22 UTC
29454ed Merge pull request #4460 from magistere/master Add inverse hyperbolic sine, cosine and tangent functions 09 October 2013, 18:26:12 UTC
5da85d0 Add inverse hyperbolic sine, cosine and tangent functions 09 October 2013, 18:18:52 UTC
859d9b3 Merge branch 'master' of github.com:JuliaLang/julia 09 October 2013, 16:58:06 UTC
0ab4b84 Pkg.publish(): push registered and tagged versions automatically. This currently requires push privileges to the METADATA.jl repo, but in the future, we could potentially use GitHub's API to open a pull request instead of pushing. 09 October 2013, 16:56:10 UTC
066467e Add @kmsquire's test for #4453 09 October 2013, 03:00:00 UTC
38faf71 Rename map_to2 to map_to! since it modifies the destination array It looks like the name map_to2 is a historical artifact from a day when there was a separate map_to. 09 October 2013, 03:00:00 UTC
700f0b3 Rename map_range_to to map_range_to! Also adjust order of arguments to more closely mimic map_to2 in abstractarray.jl, although this still needs to have a different name from map_to2 to avoid ambiguity warnings. 09 October 2013, 02:59:39 UTC
5d70205 Merge pull request #4454 from simonster/n4453 Fix #4453 09 October 2013, 02:06:23 UTC
6972426 Fix #4453 09 October 2013, 01:53:42 UTC
7ac3c34 recommend eof instead of nb_available in help for isopen 08 October 2013, 22:01:44 UTC
aeeac13 Pkg.{tag,register}: create commits for changes to METADATA. 08 October 2013, 19:58:37 UTC
e685757 show ip addresses using a valid input form we have it, so we might as well use it 08 October 2013, 19:18:01 UTC
bd704f8 Merge pull request #4450 from ivarne/repl_io Added ::IO type specifier on writemime methods in repl.jl 08 October 2013, 18:29:24 UTC
97390a1 Merge pull request #4449 from randyzwitch/master Add IPv4 and IPv6 function definitions 08 October 2013, 18:29:02 UTC
af1ae30 Merge pull request #4448 from la3lma/master Be explicit about the name of the system image file 08 October 2013, 18:27:08 UTC
a46a92f Added ::IO type specifier on writemime methods in repl.jl 08 October 2013, 13:52:30 UTC
a61660b Add IPv4 and IPv6 function definitions Add function definitions 08 October 2013, 10:44:24 UTC
f451e75 Be explicit about the name of the system image file when not being able to write or read it. 08 October 2013, 06:04:27 UTC
e39f9d8 re-remove numerically unstable test from arpack 08 October 2013, 05:31:51 UTC
back to top