18
I Use This!
Very High Activity

Commits : Listings

Analyzed about 8 hours ago. based on code collected 2 days ago.
Nov 17, 2024 — Nov 17, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Add combinatorics.j More... about 15 years ago
Fix whitespace issues before the whitespace nazis catch up. Also, reorganize to make loops more readable. More... about 15 years ago
Move all combinatorial codes into combinatorics.j This includes randperm/randcycle and sorting from array.j Also move nCr, nPr, factorial from intfuncs.j fact renamed to factorial More... about 15 years ago
Reorganize N-d assignment. Currently enforce either scalar or array assignment. Going forward, the assignment should be able to support assignment of any type. More... about 15 years ago
All types of indexing in N-d indexing should now work. More... about 15 years ago
build changes to support switching GCs More... about 15 years ago
Merge branch 'master' of zion.cs.ucsb.edu:julia More... about 15 years ago
skip argument count check for specialized functions More... about 15 years ago
N-d vector indexing. This is just the basic case. All other cases will soon follow. More... about 15 years ago
Revert colon and sum to use Real and Int. More... about 15 years ago
Merge branch 'master' of zion.cs.ucsb.edu:julia More... about 15 years ago
making invalid code points (> 0x10ffff) in string literals a parse error More... about 15 years ago
Implement print(c::Char) in julia using escape_string. More... about 15 years ago
fix to last checkin on local decls. adding error for invalid local declaration more work on new GC More... about 15 years ago
improving syntax of local and global declarations involving assignments now consistent with let and multi-range for loop More... about 15 years ago
There's no standard escaped representation of chars > 0x7f now. More... about 15 years ago
Use iswprint() in escape_string to decide what chars to print as-is. More... about 15 years ago
== and != behave differently from matlab, when both inputs are arrays. They always returns a scalar. More... about 15 years ago
More n-d array operations. Get rid of old vector/matrix specializations as the n-d case handles them all. More... about 15 years ago
Replace Real with Number in much of array.j. More... about 15 years ago
Fix Viral's weirdo whitespace. More... about 15 years ago
Use only generic version of array operators for now. Use Real instead of Scalar to avoid warnings for now. When we are ready for Complex, we may want to revert back to Scalar More... about 15 years ago
Add n-d array +,-,.*,./,==,> More... about 15 years ago
improving variable scope in the repl; now expressions behave as if they were in functions with global declarations for each variable that has been assigned in the repl a couple minor touch-ups More... about 15 years ago
Can now safely move rational.j and complex.j after string.j. More... about 15 years ago
fixing Int32 type bootstrapping issue More... about 15 years ago
better Range length and for loop count implementation removing extra "floor" no longer needed for bootstrap improving typeassert error message More... about 15 years ago
Fix the behavior of lpad and rpad for variable-width encodings. More... about 15 years ago
Implement strind and strchr to find char index and char value. More... about 15 years ago
Make RepString generic for all Int type repetitions. More... about 15 years ago