swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40

sort by:
Revision Author Date Message Commit Date
5a28707 Add simple Doxygen filter for Julia Also modifies Doxyfile to accept Julia source files, telling doxygen to parse Julia files with its C parser. Now of course Julia is NOT C at all, but doxygen allows you to fool it by running input filters on source files. The Julia-to-pseudo-C filter is the most brain-dead thing you can imagine. All the heavy lifting is done by JuliaParser.jl; the filter simply looks for function declarations, rewrites the signatures into pseudo-C notation, and then spits out the body of the function parsed by JuliaParser wrapped with a pair of braces. The pseudo-C function signature is quite incomplete: - varargs drop the names of the variable (e.g. myarrays... -> ....), - kwargs are ignored Nonetheless it's quite amazing how much functionality you can get from such a terrible hack! 21 October 2014, 16:09:28 UTC
3bbb0a3 Add Doxyfile so you can run Doxygen 17 October 2014, 23:34:15 UTC
0c67d3d fix some incorrect uses of alloc_tuple_uninit (memory bug) 17 October 2014, 19:55:08 UTC
11d6512 Merge pull request #8709 from JuliaLang/sf/complex32-i686 Let's try just making this test a @test_approx_eq 17 October 2014, 19:08:52 UTC
e74ef13 Be a little bit more forceful with julia deps 17 October 2014, 18:24:47 UTC
da4a94d test_approx_eq cannot function on a boolean, obviously 17 October 2014, 17:45:30 UTC
2a7132e Let's try just making this test a @test_approx_eq 17 October 2014, 16:09:00 UTC
de2ba52 Merge pull request #8706 from crayxt/patch-10 MCStreamer::InitSections changed in LLVM_SVN. 17 October 2014, 04:00:55 UTC
8e9e68c make Makefile more informative about what julia sysimg build step it is doing 17 October 2014, 03:21:34 UTC
a260fab MCStreamer::InitSections changed in LLVM_SVN. Upstream change https://github.com/llvm-mirror/llvm/commit/90ce9f70e23495dc234ff85d4097203dc2efadcc 17 October 2014, 03:10:32 UTC
c74c764 Merge branch 'sk/modpocalypse' Conflicts: base/deprecated.jl 17 October 2014, 00:22:42 UTC
819d9c8 fix a missing gc root in codegen 16 October 2014, 22:12:20 UTC
5039cb1 deprecate `oftype(type,x)`, which is identical to `convert` 16 October 2014, 14:15:34 UTC
56f0820 handle apply_type in static_eval 16 October 2014, 13:26:04 UTC
51b6e03 fix inadvertently introduced type-change in `Uint128 * Uint128`. 15 October 2014, 23:44:58 UTC
8c02093 Merge pull request #8659 from JuliaLang/cjh/doc-types Update type docs to 0.4-dev 15 October 2014, 21:52:43 UTC
37ae6c8 Tweak None == Union() discussion to reflect 0.4 behavior. 15 October 2014, 21:52:33 UTC
4af837a Fix leading_ones example 15 October 2014, 21:52:33 UTC
7a065aa x::Int8=1000 now throws an error upon conversion 15 October 2014, 21:52:33 UTC
4bd6caf Add documentation for Dates types 15 October 2014, 21:43:09 UTC
83a1401 Remove non-existent `tofirst` and `tolast` methods from adjuster API in Dates docs 15 October 2014, 21:25:51 UTC
5cdfd21 integer trunction: use `n % T` instead of `mod(n, T)`. 15 October 2014, 21:17:19 UTC
e9de0a1 add missing precompile 15 October 2014, 21:09:37 UTC
2ee9c15 itrunc => mod: a few more integer modulus methods. 15 October 2014, 20:09:27 UTC
496351e Fix #8570 and add test. 15 October 2014, 19:45:06 UTC
3f2cde1 Fix #4933 15 October 2014, 17:43:25 UTC
9222a5a Better function cross-referencing for Arrays chapter 15 October 2014, 15:23:30 UTC
bab3572 Merge pull request #8691 from julian-gehring/patch-doc-dense doc: Remove reference to deprecated 'dense' function 15 October 2014, 14:36:11 UTC
d48e183 doc: Remove reference to deprecated 'dense' function 15 October 2014, 09:44:51 UTC
0b90e7e Merge pull request #8689 from JuliaLang/tk/fix8678 fix #8678, reading large files on windows 15 October 2014, 08:55:08 UTC
46e1598 fix #8678, reading large files on windows read() on windows takes a uint, so apply a similar io limit per call as done on mac (directly reusing the same code would give a compiler warning, since long is 32 bits on windows) 15 October 2014, 06:45:13 UTC
b1db9ab Merge pull request #8686 from StephenVavasis/patch-11 Generalize convert for dict 15 October 2014, 04:36:40 UTC
5c4e222 Generalize convert for dict The convert function's second argument can be any associative type, not just another dict, so it should be written more generally. 15 October 2014, 03:56:00 UTC
63ecbcb Merge pull request #8624 from JuliaLang/jcb/cfsimd Reject `@simd` loops with break / continue / `@goto` in inner loop body 14 October 2014, 18:56:33 UTC
797fd7b add NEWS entry 14 October 2014, 18:42:30 UTC
821b6c5 Merge pull request #8682 from rickhg12hs/master Fix minor typo 14 October 2014, 18:18:36 UTC
7f7246e Merge pull request #8585 from rfourquet/range-indexing fix #8584 ((0:1//2:2)[1:2:3] was failing) 14 October 2014, 18:16:51 UTC
69ab886 Fix minor typo 14 October 2014, 18:16:06 UTC
e2a0029 Merge pull request #8660 from JuliaLang/anj/givens Add function for machine precision number to avoid expensive calculations in the Givens rotation algorithms 14 October 2014, 17:56:49 UTC
4771df2 Merge pull request #8680 from binnisb/master RFC: Function matchall with overlaps 14 October 2014, 17:55:11 UTC
dadd6ca Add function for machine precision number to avoid expensive calculation in the Givens rotation algorithms. Remove subtype relation to AbstractMatrix and therefore also the now unnecessary ambiguity warning avoiding method definitions. Use @simd and @inbounds in methods for applying Givens rotations. 14 October 2014, 14:53:07 UTC
c41040b new offset should be one index higher than start index of last match 14 October 2014, 13:37:25 UTC
db33e3b Testcase for overlap in matchall 14 October 2014, 13:34:41 UTC
e4028ff Merge pull request #8661 from JuliaLang/anj/bdsqr Fix bdsqr, add and reorganize tests 14 October 2014, 13:00:08 UTC
39024a7 Add to NEWS 14 October 2014, 11:35:53 UTC
c3a406c Bump openblas to 0.2.12. 14 October 2014, 05:44:27 UTC
7e39c28 Fix #8666 for sure this time. 14 October 2014, 04:03:32 UTC
e8c38d4 Fix #8666 14 October 2014, 02:46:41 UTC
534c56a Merge pull request #8670 from wkearn/bitarray Fix bug in issym(A::BitMatrix) 14 October 2014, 01:18:29 UTC
cb1a91f Merge pull request #8664 from tkelman/delete-test-julia-bat Delete test-julia.bat 13 October 2014, 22:56:18 UTC
dee2cf4 Merge pull request #8658 from JuliaLang/cjh/doc-arrays Update docs for 0.4-dev 13 October 2014, 22:56:02 UTC
13638cd fix a memory bug in codegen of getfield on a 0-size struct 13 October 2014, 18:41:03 UTC
85b015f Add issym test for bitarrays 13 October 2014, 13:00:09 UTC
7ba14fe Fix bug in issym(A::BitMatrix) numnz -> countnz 13 October 2014, 01:44:56 UTC
159274f remove unsupported use of chained type parameters 12 October 2014, 17:15:54 UTC
f75320f Delete test-julia.bat This file is made obsolete by `Base.runtests()`, which works cross-platform. 12 October 2014, 06:25:22 UTC
06f4fc4 Fix bdsqr, add and reorganize tests 12 October 2014, 01:37:58 UTC
78cb1ff Merge pull request #8594 from amartgon/issue_4929 fixes #4929 11 October 2014, 23:50:32 UTC
73284f9 Merge pull request #8655 from JuliaLang/anj/bidiag Restrict Bidiagonal properties to be Vector instead of AbstractVector 11 October 2014, 23:39:24 UTC
0a3ae07 Reformat nullable types doctests so that they run. 11 October 2014, 23:03:06 UTC
5fe5c2e Fix doctest failures from line number changes 11 October 2014, 22:28:54 UTC
956e588 Reflect new integer promotion rules 11 October 2014, 22:24:33 UTC
a0bf429 MURICA 11 October 2014, 22:21:55 UTC
57b20ba Remove {} syntax in integer range doctest 11 October 2014, 22:20:49 UTC
19e8ed8 Remove deprecated list comprehension using {} syntax 11 October 2014, 22:20:49 UTC
95f8eb0 Explain that typed array constructor does not concatenate 11 October 2014, 22:20:40 UTC
d70ccee Remove {} syntax 11 October 2014, 22:08:25 UTC
1a4c02f fix typo in cholmod.jl 11 October 2014, 17:51:39 UTC
41d53bb Restrict Bidiagonal properties to be Vector instead of AbstractVector 11 October 2014, 17:00:06 UTC
da926d5 Remove Julia Studio links 11 October 2014, 16:53:18 UTC
0027cbf Merge pull request #8654 from julian-gehring/patch-1 base.rst: Update 'Combinatorics' documentation 11 October 2014, 16:45:22 UTC
0246ba9 Merge pull request #8647 from JuliaLang/anj/errortri Remove error bounds calculation from triangular solver 11 October 2014, 15:59:21 UTC
ed6141b Remove error bounds calculation from triangular solver and make errorbounds a separate function. Add some tests, adjust the test code and add some spaces. 11 October 2014, 15:10:38 UTC
3dd3ce8 Merge pull request #8645 from JuliaLang/tk/gmp-install-adjust RFC: use contrib/install.sh to install gmp 11 October 2014, 11:58:44 UTC
d53834a base.rst: Combinatorics: Fix 'permutations' example 11 October 2014, 10:14:56 UTC
7cec9d2 base.rst: Combinatorics: Consistently name arrays Use 'array' consistently, instead of a mixture of 'a', 'arr', 'array'. 11 October 2014, 10:09:36 UTC
5e32a66 Merge pull request #8633 from Wilfred/further_indentation_improvements Indentation fixes for julia-mode 10 October 2014, 23:45:36 UTC
d5555cf replace itrunc(Uint8, 1234) => mod(1234, Uint8), etc. [fix #8646] 10 October 2014, 19:24:10 UTC
c600816 convert handle check into assert 10 October 2014, 11:43:31 UTC
f61fedb use contrib/install.sh to install gmp this replaces some patching and windows special-casing. removing the touch means mpfr no longer rebuilds every time after `make cleanall` before: make cleanall && time(make -C deps install-mpfr) took 2 minutes, after it takes one second 10 October 2014, 06:49:31 UTC
a542d3d Merge branch 'master' into issue_4929 09 October 2014, 23:43:00 UTC
a1f5c7c improve error handling 09 October 2014, 23:42:15 UTC
4dc1679 base/array.jl: fix typo 09 October 2014, 19:42:27 UTC
2442478 Merge pull request #8642 from IainNZ/patch-2 Put in instructions for getting release-0.3 instead of master 09 October 2014, 18:58:29 UTC
160363b Put in instructions for getting release-0.3 instead of master 09 October 2014, 17:50:06 UTC
a43df82 Merge pull request #8639 from JuliaLang/sf/profile_flat Purge C samples before counting samples when printing flat Profile data 09 October 2014, 16:22:16 UTC
d2d0a1b Merge pull request #8638 from maleadt/master Add a Makefile setting for building Julia in debug mode. 09 October 2014, 15:41:05 UTC
96c7bc3 Purge C samples before counting samples when printing flat Profile data This avoids the error "ERROR: Reducing over an empty array is not allowed." when calling Profile.print(format=:flat) on a profile sample set that has only C samples 09 October 2014, 15:37:17 UTC
d7a90c0 Try harder to ensure non-empty profiles in tests Also test non-emptiness only for C=true profiles. See: https://github.com/JuliaLang/julia/commit/7c4330b900dbeae698fee2621f4ce82911457199#commitcomment-8094422 09 October 2014, 13:55:43 UTC
8833991 Add a Makefile setting for building Julia in debug mode. 09 October 2014, 13:24:19 UTC
706f6ac fix failing tests for issue #8619 on 32-bit systems 09 October 2014, 06:32:59 UTC
1c26a7d correct hashing of large floats [fix #8619] Unfortunately, this introduces a 30% slowdown for Float64 hashing and a 12% slowdown for Int64 hashing. Perhaps something cleverer can be done, but for now, at least this fixes the bug. 09 October 2014, 05:14:14 UTC
264fba7 Merge pull request #8578 from JuliaLang/jcb/rmanyarray Free up curly brace syntax. 09 October 2014, 04:50:04 UTC
89783e2 give better example for cell2d deprecated syntax 09 October 2014, 02:23:43 UTC
f7934ab add Any to avoid concatenation in deprecated Set constructor 09 October 2014, 02:13:06 UTC
45bf6be merge branch 'master' 09 October 2014, 00:52:40 UTC
aaa2a8e Respect the active region when indenting. This fixes #8634. 08 October 2014, 22:51:47 UTC
dbaf10e Use the syntax table to detect if point is in a comment. This fixes #8538, where `julia-comment-open` was getting confused by strings inside comments. It also generalises `julia-in-comment` to handle multi-line comments. 08 October 2014, 22:32:00 UTC
f1b00f8 Merge pull request #8622 from JuliaLang/jh/fix_indexin fix indexin for new Dict syntax 08 October 2014, 21:56:00 UTC
7851a98 Merge pull request #8627 from JuliaLang/sjk/dict-cleanup Fix some issues with new Dict constructors 08 October 2014, 21:54:42 UTC
back to top