~ubuntu-branches/ubuntu/wily/julia/wily

« back to all changes in this revision

Viewing changes to base/exports.jl

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-02-11 03:51:26 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130211035126-hap464pbhd97wjbl
Tags: 0.1~20130211.git86fbe98d-1
* New upstream snapshot.
* debian/control:
   + add git to Recommends (for Julia package manager)
   + remove dependencies on libglpk-dev (it moved to its own package)
   + add explicit dependency on libgmp10 (there is no more a wrapper)
* fix-clean-rules.patch: remove patch, applied upstream
* gsvddense_blasint.patch: new patch
* Refresh other patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
export
2
2
# Modules
3
 
    Grisu,
4
3
    PCRE,
5
4
    FFTW,
6
5
    DSP,
22
21
    AbstractVector,
23
22
    Array,
24
23
    Associative,
 
24
    AsyncStream,
25
25
    BitArray,
26
26
    BigFloat,
27
27
    BigInt,
46
46
    Filter,
47
47
    IO,
48
48
    IOStream,
49
 
    IOString,
 
49
    IOString,  # deprecated
 
50
    IOBuffer,
50
51
    ImaginaryUnit,
51
52
    IntSet,
52
53
    LocalProcess,
56
57
    #PipeEnd,
57
58
    #PipeIn,
58
59
    #PipeOut,
59
 
    PipeString,
 
60
    PipeString,  # deprecated
 
61
    PipeBuffer,
60
62
    #Port,
61
63
    #Ports,
62
64
    #ProcessExited,
82
84
    RopeString,
83
85
    Set,
84
86
    SparseMatrixCSC,
 
87
    SpawnNullStream,
85
88
    StridedArray,
86
89
    StridedMatrix,
87
90
    StridedVecOrMat,
91
94
    SubOrDArray,
92
95
    SubString,
93
96
    SymTridiagonal,
 
97
    TcpSocket,
94
98
    Tridiagonal,
 
99
    UVError,
95
100
    VecOrMat,
96
101
    Vector,
97
102
    VersionNumber,
103
108
    Factorization,
104
109
    BunchKaufman,
105
110
    CholeskyDense,
 
111
    CholeskyPivotedDense,
106
112
    LUDense,
107
113
    LUTridiagonal,
108
114
    LDLTTridiagonal,
109
115
    QRDense,
110
 
    QRPDense,
 
116
    QRPivotedDense,
 
117
    SVDDense,
 
118
    GSVDDense,
111
119
    InsertionSort,
112
120
    QuickSort,
113
121
    MergeSort,
115
123
 
116
124
# Exceptions
117
125
    ArgumentError,
118
 
    BackTrace,
119
126
    DisconnectException,
 
127
    EOFError,
120
128
    ErrorException,
121
129
    KeyError,
122
130
    LoadError,
146
154
    STDOUT,
147
155
    VERSION,
148
156
    WORD_SIZE,
149
 
    Scheduler,
150
157
    e,
151
158
    im,
152
159
    pi,
344
351
    num,
345
352
    num2hex,
346
353
    one,
347
 
    power_by_squaring,
348
354
    powermod,
349
355
    prevfloat,
350
356
    prevpow,
371
377
    sind,
372
378
    sinh,
373
379
    sqrt,
374
 
    sqrtm,
375
380
    square,
376
381
    tan,
377
382
    tand,
389
394
    zero,
390
395
    nextprod,
391
396
    prevprod,
392
 
    isinteger,
393
397
    typemax,
394
398
    typemin,
395
399
 
417
421
    zeta,
418
422
 
419
423
# arrays
420
 
    amap,
421
 
    areduce,
 
424
    reducedim,
422
425
    bsxfun,
423
426
    cartesian_map,
424
427
    cat,
433
436
    cummin,
434
437
    cummax,
435
438
    diff,
436
 
    each_col,
437
 
    each_col!,
438
 
    each_row,
439
 
    each_row!,
440
 
    each_vec,
441
 
    each_vec!,
442
439
    fill,
443
440
    fill!,
444
441
    find,
447
444
    findmin,
448
445
    findn,
449
446
    findn_nzs,
 
447
    findfirst,
 
448
    findnext,
450
449
    first,
451
450
    flipdim,
452
451
    fliplr,
460
459
    indmax,
461
460
    indmin,
462
461
    invperm,
463
 
    ipermute,
 
462
    ipermute!,
 
463
    ipermutedims,
464
464
    isperm,
465
465
    issorted,
466
466
    last,
476
476
    ones,
477
477
    partitions,
478
478
    pascal,
479
 
    permute,
 
479
    permute!,
 
480
    permutedims,
480
481
    prod,
481
482
    promote_shape,
482
483
    randcycle,
492
493
    searchsortedlast,
493
494
    select,
494
495
    select!,
495
 
    shuffle,
496
496
    shuffle!,
497
497
    size,
498
498
    slice,
513
513
    vcat,
514
514
    vec,
515
515
    zeros,
516
 
    findfirst,
517
516
    ref_shape,
518
517
    assign_shape_check,
519
 
    make_loop_nest,
520
518
    check_bounds,
521
519
 
522
520
# linear algebra
523
521
    chol,
524
 
    chold,
525
 
    chold!,
526
 
    cholpd,
527
 
    cholpd!,
 
522
    cholfact,
 
523
    cholfact!,
 
524
    cholpfact,
 
525
    cholpfact!,
528
526
    cond,
529
527
    cross,
530
528
    ctranspose,
537
535
    eig,
538
536
    eigvals,
539
537
    expm,
 
538
    sqrtm,
540
539
    eye,
541
540
    factors,
542
541
    hess,
552
551
    ldltd,
553
552
    linreg,
554
553
    lu,
555
 
    lud,
556
 
    lud!,
 
554
    lufact,
 
555
    lufact!,
557
556
    norm,
558
557
    normfro,
559
558
    null,
560
559
    pinv,
561
560
    qr,
562
 
    qrd!,
563
 
    qrd,
 
561
    qrfact!,
 
562
    qrfact,
564
563
    qrp,
565
 
    qrpd!,
566
 
    qrpd,
 
564
    qrpfact!,
 
565
    qrpfact,
 
566
    qmulQR,
 
567
    qTmulQR,
567
568
    randsym,
568
569
    rank,
569
570
    rref,
571
572
    schur,
572
573
    solve,
573
574
    svd,
 
575
    svdfact!,
 
576
    svdfact,
574
577
    svdt,
 
578
    svdvals!,
575
579
    svdvals,
576
580
    symmetrize!,
577
581
    trace,
578
582
    transpose,
579
 
    trideig,
580
583
    tril,
581
584
    triu,
582
585
    tril!,
599
602
    bitpack,
600
603
    bitunpack,
601
604
    falses,
602
 
    flipbits,
603
605
    flipbits!,
604
 
    rotl,
605
 
    rotr,
 
606
    rol,
 
607
    ror,
606
608
    trues,
607
609
 
608
610
# dequeues
609
611
    append!,
610
 
    grow!,
 
612
    resize!,
611
613
    insert!,
612
614
    shift!,
613
615
    unshift!,
 
616
    pop!,
 
617
    push!,
614
618
 
615
619
# collections
616
620
    add!,
617
621
    add_each!,
618
622
    all,
619
 
    allp,
620
623
    any,
621
 
    anyp,
622
624
    assign,
623
625
    collect,
624
626
    complement,
625
627
    complement!,
626
628
    contains,
627
 
    contains_is,
628
 
    count,
629
 
    countp,
630
629
    delete!,
631
630
    empty!,
 
631
    endof,
632
632
    del_each!,
633
633
    eltype,
634
634
    get,
635
635
    has,
636
 
    hash,
637
636
    intersect,
638
637
    intersect!,
639
638
    isempty,
640
 
    key,
 
639
    getkey,
641
640
    keys,
642
 
    keytype,
643
641
    length,
644
 
    endof,
645
 
    setdiff,
646
642
    map,
647
 
    map_to,
648
 
    map_to2,
 
643
    map!,
649
644
    mapreduce,
650
645
    merge,
651
646
    merge!,
652
 
    pairs,
653
647
    reduce,
654
648
    ref,
655
 
    resize,
 
649
    sizehint,
656
650
    similar,
 
651
    setdiff,
657
652
    symdiff,
658
653
    symdiff!,
659
654
    union,
660
655
    union!,
661
656
    unique,
662
657
    values,
663
 
    valtype,
664
 
    pop!,
665
 
    push!,
666
658
    filter,
667
659
    filter!,
668
660
 
719
711
    strip,
720
712
    strwidth,
721
713
    thisind,
722
 
    transform_to_utf8,
723
714
    ucfirst,
724
715
    uppercase,
725
716
    utf8,
732
723
    float64_isvalid,
733
724
    hex,
734
725
    xdump,
735
 
    is_hex_digit,
736
726
    ndigits,
737
727
    ndigits0z,
738
728
    oct,
776
766
    randbool,
777
767
    randn!,
778
768
    randn,
 
769
    srand,
779
770
 
780
771
# statistics
781
 
    autocor,
782
772
    cor,
783
 
    cor_pearson,
784
 
    cor_spearman,
785
773
    cov,
786
 
    cov_pearson,
787
 
    cov_spearman,
788
 
    decile,
789
 
    dist,
790
774
    hist,
791
 
    histc,
792
 
    inverse_rle,
793
 
    iqr,
794
 
    kurtosis,
795
 
    mad,
796
775
    mean,
797
776
    median,
798
 
    percentile,
799
777
    quantile,
800
 
    quartile,
801
 
    quintile,
802
 
    rle,
803
 
    skewness,
804
 
    srand,
805
778
    std,
806
 
    tiedrank,
807
779
    var,
808
 
    weighted_mean,
809
780
 
810
781
# signal processing
811
782
    bfft,
855
826
    deepcopy_internal,
856
827
    isequal,
857
828
    isless,
 
829
    hash,
858
830
    identity,
859
831
    object_id,
860
832
    sizeof,
902
874
    expr,
903
875
    gensym,
904
876
    parse,
905
 
    parse_input_line,
906
 
    parseatom,
907
877
    symbol,
908
878
 
909
879
# help and reflection
926
896
 
927
897
# loading source files
928
898
    evalfile,
929
 
    find_in_path,
930
899
    include,
931
900
    include_string,
932
901
    reload,
933
902
    require,
934
903
 
935
904
# RTS internals
936
 
    compile_hint,
 
905
    compile_hint, # TODO: rename to "precompile"?
937
906
    finalizer,
938
907
    gc,
939
908
    gc_disable,
951
920
    tty_rows,
952
921
 
953
922
# I/O and events
 
923
    accept,
 
924
    listen,
 
925
    bind,
 
926
    connect,
954
927
    close,
955
928
    countlines,
956
929
    readcsv,
981
954
    munmap,
982
955
    nb_available,
983
956
    open,
 
957
    open_any_tcp_port,
984
958
    position,
985
959
    read,
986
960
    readall,
993
967
    seek_end,
994
968
    serialize,
995
969
    skip,
 
970
    start_reading,
 
971
    stop_reading,
 
972
    start_timer,
 
973
    stop_timer,
996
974
    takebuf_array,
997
975
    takebuf_string,
998
976
    truncate,
 
977
    uv_error,
999
978
    write,
1000
979
 
1001
980
# multiprocessing
1003
982
    addprocs_sge,
1004
983
    addprocs_ssh,
1005
984
    addprocs_ssh_tunnel,
1006
 
    at_each,
1007
985
    fetch,
1008
986
    isready,
1009
 
    make_scheduled,
1010
987
    yield,
1011
988
    enq_work,
1012
989
    myid,
1013
990
    nprocs,
1014
 
    pfor,
1015
991
    pmap,
1016
 
    preduce,
1017
992
    put,
1018
993
    remote_call,
1019
994
    remote_call_fetch,
1020
995
    remote_call_wait,
1021
996
    remote_do,
1022
 
    rr2id,
1023
 
    spawn,
1024
 
    spawnat,
1025
 
    spawnlocal,
1026
997
    take,
1027
998
    wait,
1028
999
 
1029
1000
# distributed arrays
1030
 
    defaultdist,
1031
1001
    distribute,
 
1002
    dfill,
1032
1003
    dones,
1033
1004
    drand,
1034
1005
    drandn,
1054
1025
# filesystem operations
1055
1026
    cd,
1056
1027
    pwd,
1057
 
    is_file_readable,
1058
1028
    ls,
1059
1029
    cp,
1060
1030
    rm,
1063
1033
    mkdir,
1064
1034
    mkpath,
1065
1035
    rmdir,
1066
 
    tmpnam,
1067
1036
    tempdir,
1068
1037
    tempname,
1069
1038
    mktemp,
1070
1039
    mktempdir,
1071
 
    download_file,
 
1040
    download,
1072
1041
    filemode,
1073
1042
    filesize,
1074
1043
    mtime,
1093
1062
    gperm,
1094
1063
    operm,
1095
1064
 
1096
 
# external processes
1097
 
    connect,
 
1065
# external processes ## TODO: whittle down these exports.
1098
1066
    getpid,
1099
1067
    ignorestatus,
 
1068
    kill,
1100
1069
    pipeline_error,
1101
1070
    process_exit_status,
1102
1071
    process_exited,
1107
1076
    #process_stop_signal,
1108
1077
    #process_stopped,
1109
1078
    process_term_signal,
1110
 
    read_from,
 
1079
    readsfrom,
1111
1080
    run,
 
1081
    spawn,
 
1082
    spawn_nostdin,
1112
1083
    success,
1113
 
    write_to,
 
1084
    writesto,
1114
1085
 
1115
1086
# C interface
1116
1087
    c_free,
1119
1090
    dlsym,
1120
1091
    dlsym_e,
1121
1092
    errno,
1122
 
    getenv,
1123
 
    hasenv,
1124
1093
    pointer,
1125
1094
    pointer_to_array,
1126
1095
    cfunction,
1127
 
    setenv,
1128
1096
    strerror,
1129
1097
    unsafe_ref,
1130
1098
    unsafe_assign,
1131
 
    unsetenv,
1132
1099
 
1133
1100
# Macros
1134
 
    @v_str,
1135
 
    @unexpected,
1136
 
    @assert,
1137
 
    @r_str,
1138
1101
    @str,
1139
 
    @S_str,
1140
1102
    @I_str,
1141
1103
    @E_str,
1142
1104
    @B_str,
1143
1105
    @b_str,
 
1106
    @L_str,
 
1107
    @r_str,
 
1108
    @v_str,
 
1109
    @unexpected,
 
1110
    @assert,
1144
1111
    @cmd,
1145
1112
    @time,
 
1113
    @timed,
1146
1114
    @elapsed,
1147
 
    @timed,
 
1115
    @which,
1148
1116
    @windows_only,
1149
1117
    @unix_only,
1150
1118
    @osx_only,
1152
1120
    @sync,
1153
1121
    @async,
1154
1122
    @spawn,
1155
 
    @spawnlocal,
 
1123
    @spawnlocal,  # deprecated
1156
1124
    @spawnat,
1157
1125
    @everywhere,
1158
1126
    @parallel,
1160
1128
    @eval,
1161
1129
    @task,
1162
1130
    @thunk,
1163
 
    @L_str,
1164
1131
    @vectorize_1arg,
1165
1132
    @vectorize_2arg,
1166
1133
    @show,
1167
1134
    @printf,
1168
1135
    @sprintf
1169
 
 
1170
 
export
1171
 
# libuv branch stuff
1172
 
    accept,
1173
 
    listen,
1174
 
    bind,
1175
 
    AsyncStream,
1176
 
    Buffer,
1177
 
    PipeString,
1178
 
    SpawnNullStream,
1179
 
    Stream, 
1180
 
    TcpSocket,
1181
 
    open_any_tcp_port,
1182
 
    connect_to_host,
1183
 
    spawn_nostdin,
1184
 
    start_reading,
1185
 
    stop_reading,
1186
 
    globalEventLoop,
1187
 
    uv_error,
1188
 
    UVError,
1189
 
    kill,
1190
 
    startTimer,
1191
 
    stopTimer