Your message dated Sun, 29 Jul 2018 13:22:50 +0000 with message-id <e1fjles-000173...@fasolo.debian.org> and subject line Bug#812311: fixed in scilab 6.0.1-3 has caused the Debian Bug report #812311, regarding scilab: Scilab Crash with Basic functions (det and inv matrix) to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 812311: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812311 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
--- Begin Message ---Package: scilab Version: 5.5.2-2 Severity: grave Tags: upstream Justification: renders package unusable Dear Maintainer, * What led up to the situation? I developed matrix script with scilab. I have some crash of it with sample function det() and inv() for matrix upper than 3 column. My matrix has 12 line and 12 column. I tried my script with scilab on windows environment, these functions were run. * What exactly did you do (or not do) that was effective (or ineffective)? -- begin of script---- clear a=4; b=3; x1=-a; y1=-b; //u11, v11, u12, v12, u22, v22, u21, v21, Elm1=1/(4*a*b)*[-(b-y1) 0 +(b-y1) 0 (b+y1) 0 -(b+y1) 0; 0 -(a-x1) 0 -(a+x1) 0 (a+x1) 0 (a-x1); -(a-x1) -(b-y1) -(a+x1) (b-y1) (a+x1) (b+y1) (a-x1) -(b+y1)] x2=-3*a; y2=-3*b; //u12, v12, u13, v13, u23, v23, u22, v22, Elm2=1/(4*a*b)*[-(b-y2) 0 +(b-y2) 0 (b+y2) 0 -(b+y2) 0; 0 -(a-x2) 0 -(a+x2) 0 (a+x2) 0 (a-x2); -(a-x2) -(b-y2) -(a+x2) (b-y2) (a+x2) (b+y2) (a-x2) -(b+y2)] //u11, v11, u12, v12, u22, v22, u21, v21, //u12, v12, u13, v13, u23, v23, u22, v22, //u11, v11, u12, v12, u22, v22, u21, v21, u13, v13, u23, v23, //B=1/(4*a*b)*[-(b-y1) 0 (b-y1)-(b-y2) 0+0 (b+y1)-(b+y2) 0+0 -(b+y1) 0 +(b-y2) 0 (b+y2) 0 ; // 0 -(a-x1) 0+0 -(a-x2)-(a+x1) 0+0 (a-x2)+(a+x1) 0 (a-x1) 0 -(a+x2) 0 (a+x2); // -(a-x1) -(b-y1) -(a+x1)-(a-x2) -(b-y2)+(b-y1) (a+x1)+(a-x2) -(b+y2)+(b+y1) (a-x1) -(b+y1) -(a+x2) (b-y2) (a+x2) (b+y2)] //B_inv=B' //u11, v11, u12, v12, u22, v22, u21, v21, u13, v13, u23, v23, //Mat_B=[Elm1_u11 Elm1_v11 Elm1_u12+Elm2_u12 Elm1_v12+Elm2_v12 Elm1_u22+Elm2_u22 Elm1_v22+Elm2_v22 Elm1_u21 Elm1_v21 Elm2_u13 Elm2_v13 Elm2_u23 Elm2_v23] E=200000 nu=0.33 M_E=E/((1+nu)*(1-2*nu))*[(1-nu) nu 0; nu (1-nu) 0; 0 0 (1-2*nu)/2] K_1=Elm1'*M_E*Elm1 K_2=Elm2'*M_E*Elm2 //both system of equation //block element 1 block_1_a=[K_1(1,1) K_1(1,2);K_1(2,1) K_1(2,2)]; block_1_b=[K_1(1,3) K_1(1,4);K_1(2,3) K_1(2,4)]; block_1_c=[K_1(1,5) K_1(1,6);K_1(2,5) K_1(2,6)]; block_1_d=[K_1(1,7) K_1(1,8);K_1(2,7) K_1(2,8)]; block_1_e=[K_1(3,3) K_1(3,4);K_1(4,3) K_1(4,4)]; block_1_f=[K_1(3,5) K_1(3,6);K_1(4,5) K_1(4,6)]; block_1_g=[K_1(3,7) K_1(3,8);K_1(3,7) K_1(3,8)]; block_1_h=[K_1(5,5) K_1(5,6);K_1(6,5) K_1(6,6)]; block_1_i=[K_1(5,7) K_1(5,8);K_1(6,7) K_1(6,8)]; block_1_j=[K_1(7,7) K_1(7,8);K_1(8,7) K_1(8,8)]; //block element 1 block_2_a=[K_2(1,1) K_2(1,2);K_2(2,1) K_2(2,2)]; block_2_b=[K_2(1,3) K_2(1,4);K_2(2,3) K_2(2,4)]; block_2_c=[K_2(1,5) K_2(1,6);K_2(2,5) K_2(2,6)]; block_2_d=[K_2(1,7) K_2(1,8);K_2(2,7) K_2(2,8)]; block_2_e=[K_2(3,3) K_2(3,4);K_2(4,3) K_2(4,4)]; block_2_f=[K_2(3,5) K_2(3,6);K_2(4,5) K_2(4,6)]; block_2_g=[K_2(3,7) K_2(3,8);K_2(3,7) K_2(3,8)]; block_2_h=[K_2(5,5) K_2(5,6);K_2(6,5) K_2(6,6)]; block_2_i=[K_2(5,7) K_2(5,8);K_2(6,7) K_2(6,8)]; block_2_j=[K_2(7,7) K_2(7,8);K_2(8,7) K_2(8,8)]; //neutre Neutral=[0 0;0 0]; //both matrice K=[ block_1_a block_1_b Neutral block_1_d block_1_c Neutral; block_1_b' block_1_e+block_2_a block_2_b block_1_g block_1_f+block_2_d block_2_c Neutral block_2_b' block_2_e Neutral block_2_g block_2_f; block_1_d' block_1_g' Neutral block_1_j block_1_i Neutral; block_1_c' block_1_f'+block_2_d' block_2_g' block_1_i' block_1_h+block_2_j block_2_i; Neutral block_2_c' block_2_f' Neutral block_2_i' block_2_h'] M_k_d=bdiag(K) det(K) inv(K) --end of script * What was the outcome of this action? Normal return until M_k_d=bdiag(K) line. After the scilab -> "Segmentation fault" * What outcome did you expect instead? The line det(K) -> value the matrix was reversible because the matrix is diagonal. -- System Information: Debian Release: stretch/sid APT prefers testing-updates APT policy: (500, 'testing-updates'), (500, 'testing'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 4.3.0-1-amd64 (SMP w/8 CPU cores) Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages scilab depends on: ii scilab-cli 5.5.2-2 ii scilab-full-bin 5.5.2-2+b1 Versions of packages scilab recommends: ii scilab-doc 5.5.2-2 Versions of packages scilab suggests: ii scilab-doc-fr 5.5.2-2 pn scilab-doc-ja <none> pn scilab-doc-pt-br <none> -- no debconf information
--- End Message ---
--- Begin Message ---Source: scilab Source-Version: 6.0.1-3 We believe that the bug you reported is fixed in the latest version of scilab, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 812...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Julien Puydt <jpu...@debian.org> (supplier of updated scilab package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Sun, 29 Jul 2018 12:08:00 +0200 Source: scilab Binary: scilab-cli scilab scilab-data scilab-include scilab-minimal-bin scilab-full-bin scilab-doc scilab-doc-fr scilab-doc-pt-br scilab-doc-ja scilab-test Architecture: source all amd64 Version: 6.0.1-3 Distribution: unstable Urgency: medium Maintainer: Debian Science Team <debian-science-maintain...@lists.alioth.debian.org> Changed-By: Julien Puydt <jpu...@debian.org> Description: scilab - Scientific software package for numerical computations scilab-cli - Scientific software package - Command Line Interpreter scilab-data - Scientific software package for numerical computations (data file scilab-doc - Scientific software package (English documentations) scilab-doc-fr - Scientific software package (French documentation) scilab-doc-ja - Scientific software package (Japanese documentation) scilab-doc-pt-br - Scientific software package (Brazilian Portuguese documentation) scilab-full-bin - Scientific software package for numerical computations (all binar scilab-include - Scientific software package for numerical computations (include f scilab-minimal-bin - Scientific software package for numerical computations (minimal b scilab-test - Scientific software package for numerical computations (test file Closes: 662986 712065 739235 746028 764783 791274 812311 818352 875790 891351 896118 904856 Changes: scilab (6.0.1-3) unstable; urgency=medium . * Rework the java >= 9 support (Closes: #875790,#739235,#818352,#662986). * Declared all doc packages as Multi-Arch: foreign following hinter. * Rewrite d/rules removing use of cdbs. * Clean up packaging: - Bump dh compat to 11 (Closes: #746028) - Bump std-ver to 4.1.5 - don't ship various useless files - remove some lintian overrides - don't ship fonts : find them elsewhere * Checked that scilab does start (Closes: #712065,#764783,#812311,#891351,#896118). * Add patch to fix fortran compilation (Closes: #904856). * Checked that it builds with recent gcc (Closes: #791274). Checksums-Sha1: 1ac302e9558dd7fc6b7da0f6d0c58028892a00b5 3713 scilab_6.0.1-3.dsc 2e24f1f51771ad47a495da64806feb2e7e1804a4 71788 scilab_6.0.1-3.debian.tar.xz 304f8a46d2610fdf9a6aee226bd355e3befba03a 502012 scilab-cli_6.0.1-3_all.deb a14a92650af2d3f1779329c9f825d1abd560c3f3 31157920 scilab-data_6.0.1-3_all.deb 101f801149bc3d05dc6c6bb3f17b59d691d2c186 1142672 scilab-doc-fr_6.0.1-3_all.deb 317b7d24f206b8ae788b83c801c9fe1ae9b9e40b 1180560 scilab-doc-ja_6.0.1-3_all.deb 4afe55e32962dd0386df372ffa499d45e007a2ec 2710620 scilab-doc-pt-br_6.0.1-3_all.deb 2ad3c5a2a1efa48f33ff162dfe38f60333638350 2570064 scilab-doc_6.0.1-3_all.deb e61c4ba0ec209efb394172069456e9e6a05eed11 26888816 scilab-full-bin-dbgsym_6.0.1-3_amd64.deb a8281f69b4ce1adbe417f565f5be355a8f97a947 1998124 scilab-full-bin_6.0.1-3_amd64.deb eb8645868a208fa14632c262576f6bb43511a4a0 228700 scilab-include_6.0.1-3_amd64.deb bc2caa2362727fe45d7a417c5e5f0e3cef074378 94090268 scilab-minimal-bin-dbgsym_6.0.1-3_amd64.deb afbd93eaa826552ab36029984491088afe26b40c 4088600 scilab-minimal-bin_6.0.1-3_amd64.deb 68cd0b0cc557fe2f0747b745bb35d9292564f5b6 12143388 scilab-test_6.0.1-3_all.deb 7c9f982005f29a8f2808c3566bbd34289ef79d99 76188 scilab_6.0.1-3_all.deb 9471bab1e8a43f042ab70169f6bbf9ebcef45aad 22201 scilab_6.0.1-3_amd64.buildinfo Checksums-Sha256: 8d4073471376fd589fae2a7c7bfe97f38c63b590ca9abe291477a0010afea8b8 3713 scilab_6.0.1-3.dsc 2c7a135b72eceaf0a8129a492235d9586995f9a481437d2556bb9044337ab5e6 71788 scilab_6.0.1-3.debian.tar.xz 05a6715fd56d86b33da2e6d05ab360ed9a4a63b020b4ec7d36a9de3a21ee1726 502012 scilab-cli_6.0.1-3_all.deb 74ae53a9f83c5113b852102ec768d63719670b653f931f7f8e531149d7e1e49a 31157920 scilab-data_6.0.1-3_all.deb 78df0fbfb290dc17255cd9564317bebdfdfc4fd122db9cf3e7000b99e10f8e8b 1142672 scilab-doc-fr_6.0.1-3_all.deb cb865072644dc1ff9483cea6e6046581ddfcab9d08a51ead6c2bd1525a9acd70 1180560 scilab-doc-ja_6.0.1-3_all.deb 6d394a96404fb36ee3aa4b2531e2a68819fc7acd845514df8ae57c649020916b 2710620 scilab-doc-pt-br_6.0.1-3_all.deb 58a779fc053fe4359299cd64ef20259182fec12b42599e131e1318d0f6f2abf1 2570064 scilab-doc_6.0.1-3_all.deb a43a365e9f1df6ea181b8d2a888b5ef99b45c623b4f7aef273bdf84b12dd844e 26888816 scilab-full-bin-dbgsym_6.0.1-3_amd64.deb 2baa06475c8fb02d85d671a31274123bc6ebed42192cb351c2ea0a83b4465bca 1998124 scilab-full-bin_6.0.1-3_amd64.deb 0f57726f3ca642116234da4611a9ab5460d5eaecab0d3d4aaabe06114d364857 228700 scilab-include_6.0.1-3_amd64.deb e07b55cf94f609bb3b8e3f06aaa58f20b430ca62817142127886984af2fbbcea 94090268 scilab-minimal-bin-dbgsym_6.0.1-3_amd64.deb 625d43ad777bfb98d0423c4ffd7d81047422a65863671e59909ca396437177aa 4088600 scilab-minimal-bin_6.0.1-3_amd64.deb 1673ba3ac2b6c9ffdecafd9667cb76ff3c5fd033bd2fc91d2c6200b25c4a3a34 12143388 scilab-test_6.0.1-3_all.deb 15ca953354d54da6a54dd26c2819b3342df17af1d6a019e8511d5f631cfe5fc2 76188 scilab_6.0.1-3_all.deb 2f01bf0c1f5dc9b4e13b4c10fd60f6e8e89e5d406913ee063dfed12c6d31344b 22201 scilab_6.0.1-3_amd64.buildinfo Files: d71149f54514c3fe8274bceec964b77f 3713 math optional scilab_6.0.1-3.dsc b55576bb82ffe5ae6ee8655d3059c194 71788 math optional scilab_6.0.1-3.debian.tar.xz ddbbbe4c618c636647b7392c577f4832 502012 math optional scilab-cli_6.0.1-3_all.deb 06d86d497d94011bd58b4c1a6c0bf58a 31157920 math optional scilab-data_6.0.1-3_all.deb 671394c87b3f79ea278ab9a6fc5a1fb9 1142672 doc optional scilab-doc-fr_6.0.1-3_all.deb b35b75a29f2e82ebcd67ef7c0ee3ee70 1180560 doc optional scilab-doc-ja_6.0.1-3_all.deb 31755708f7a5b56e375cf222aa6c822c 2710620 doc optional scilab-doc-pt-br_6.0.1-3_all.deb 19d783b889f24065a5e2cbcb52202157 2570064 doc optional scilab-doc_6.0.1-3_all.deb 58a35a35e22907e8093b11a6d9986123 26888816 debug optional scilab-full-bin-dbgsym_6.0.1-3_amd64.deb c042b39cd64902c68ed4047583d67cb3 1998124 math optional scilab-full-bin_6.0.1-3_amd64.deb 06bc953924988e5ab89277aa146924a1 228700 math optional scilab-include_6.0.1-3_amd64.deb aa8757f5fb8d0cee4768d7cfba23a52c 94090268 debug optional scilab-minimal-bin-dbgsym_6.0.1-3_amd64.deb 1c39dbe7072445dcc4b649ff492dd6e2 4088600 math optional scilab-minimal-bin_6.0.1-3_amd64.deb eb375507d731141ea239952a138e00bd 12143388 math optional scilab-test_6.0.1-3_all.deb 334d9196d6876f30c1e3e8db7421a35a 76188 math optional scilab_6.0.1-3_all.deb fddbfba0675a8ffdb3e6315ea2888c5f 22201 math optional scilab_6.0.1-3_amd64.buildinfo -----BEGIN PGP SIGNATURE----- iQJNBAEBCgA3FiEEgS7v2KP7pKzk3xFLBMU71/4DBVEFAltduk4ZHGp1bGllbi5w dXlkdEBsYXBvc3RlLm5ldAAKCRAExTvX/gMFUUSqD/0cKqxxDxTV+oMEZwl3BOGK +GOnPEmxOlMc3FXdDw1ORxOS5Wj3Nn5AxB0vqO7ewtOVGYxB3Z6jzhSx7clvvYYv CMijbZS73x+Jk6KN3u67p6BAeT0l/18DV0CSDAgXVXTt69N849pnhrVmrp7O3uMv sw+8L5BTfAiJxvQiyHBoWvXZm+2NCGt1G52TNriIDwO3i91nO3sK79XVLZ5Pqirs ELROA7PNZgvRPDcNYDpt3S/bYn+jnbB7OtlaccTe1ZGldQV97Rzx9neBW9HBEH7p 3UOHf+fPrX6Sb8OyqoaqDqjlQwK2mNnx9v+YFAjbAuTQtRXTphTTLGWkYRaKv+pN mBPIByaQKL0HS6Co+7RlR1tZekx14vsg7FUQFYef1qSw8of4E0HzXVKJYwA/f9JL 0raIEhlFuoD+h5uigXTtIC4gi5q2meXrlq54cWbRMafx7/K1vqlnIPUeeX31bbMi wkKdi8+1UPjIEBUzVFjxqzwl71eufKZvFF/iuoIrIdjHh6oPuHWuz5n/oqPcL2q7 4Y+qeeehs9l0SGPB8s51LLigTLWH7VPcY0GF+o9qVZWvXcBxAyKap74OMkjCuTMd YmfdNkV91kQrjfDD1+w2USWDi0e4Pj7XJoCKhvDKsZxyHs8kugjZF/bs/pQzD4Gj +pprWSU40/tne4wdo06sEg== =tVme -----END PGP SIGNATURE-----
--- End Message ---
-- debian-science-maintainers mailing list debian-science-maintainers@alioth-lists.debian.net https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers