Search found 393 matches
- Oct 10, 2019 13:57
- Forum: Projects
- Topic: AZdecrypt 1.19
- Replies: 9
- Views: 6161
Re: AZdecrypt
AZdecrypt 1.16 released: http://www.zodiackillersite.com/viewtopic.php?f=81&t=3198 Download: https://drive.google.com/open?id=1vB1G8IAeelsz6mZU6chQ7azthSv8seky AZdecrypt 1.16: What's new? - Version 4 of beijinghouse's 6-grams and 7-grams included which use a special low memory no-compromise n-gr...
- Oct 08, 2019 15:47
- Forum: Community Discussion
- Topic: FreeBASIC 1.07 Release Discussion
- Replies: 61
- Views: 13641
Re: FreeBASIC 1.07 Release Discussion
Great stuff coderJeff.
- Oct 03, 2019 6:07
- Forum: Community Discussion
- Topic: FreeBASIC 1.07 Release Discussion
- Replies: 61
- Views: 13641
Re: FreeBASIC 1.07 Release Discussion
@coderJeff, About the packages with different GCC versions. I see that you still default to GCC 5.2.0. Why is that? I am not sure what GCC my project needs. While it seems that higher may be better I prefer my project to be save. Won't it be a hassle to compile all these different packages every tim...
- Sep 01, 2019 17:30
- Forum: Community Discussion
- Topic: FreeBASIC 1.07 Release Discussion
- Replies: 61
- Views: 13641
Re: FreeBASIC 1.07.0 Release Discussion
Thanks coderJeff and all people involved for FreeBASIC 1.07! | | | | | | | |_| |__ __ _ _ __ | | ___ _ ___ _ _ | __| '_ \ / _` | '_ \| |/ / | | |/ _ \| | | | | |_| | | | (_| | | | | <| |_| | (_) | |_| | \__|_| |_|\__,_|_| |_|_|\_\\__, |\___/ \__,_| __/ | |___/
- Aug 27, 2019 18:41
- Forum: Community Discussion
- Topic: fb 1.07 tests
- Replies: 54
- Views: 20297
Re: fb 1.07 tests
Thank you coderJeff and other people involved for FreeBASIC 1.07!
- May 30, 2019 6:41
- Forum: General
- Topic: Need faster Exponentiate
- Replies: 32
- Views: 3733
Re: Need faster Exponentiate
It is indeed faster and better and I will be using it instead. Thanks!
Using the following compiler flags: -gen gcc -Wc -march=native,-Ofast,-funroll-loops,-fomit-frame-pointer,-ftree-loop-im,-fivopts,-pipe
Using the following compiler flags: -gen gcc -Wc -march=native,-Ofast,-funroll-loops,-fomit-frame-pointer,-ftree-loop-im,-fivopts,-pipe
- May 26, 2019 17:49
- Forum: General
- Topic: Need faster Exponentiate
- Replies: 32
- Views: 3733
Re: Need faster Exponentiate
Thanks OSchmidt for your function,
I have tested it and it is a bit slower than Richard's for my program. As you say it could probably be optimized a little bit further and have not tried altering the i_0_11 parameter yet.
I have tested it and it is a bit slower than Richard's for my program. As you say it could probably be optimized a little bit further and have not tried altering the i_0_11 parameter yet.
- May 26, 2019 17:47
- Forum: General
- Topic: Need faster Exponentiate
- Replies: 32
- Views: 3733
Re: Need faster Exponentiate
The problem with approximating diadic functions like a^b is that they cover an area rather than a line, so usually require two, or possibly three, approximations to get one answer. There are a few possible ways to speed it up further. 1. Implement it as macro “inline code” to remove the function ca...
- May 25, 2019 14:14
- Forum: General
- Topic: Need faster Exponentiate
- Replies: 32
- Views: 3733
Re: Need faster Exponentiate
Thanks Richard, I have just released a new version this morning and included a mention of your code in the Readme.txt in the base directory of the program. https://www.freebasic.net/forum/viewtopic.php?f=8&t=23188 I have tested both your functions with the programs functionality in mind and pref...
- May 25, 2019 7:40
- Forum: Projects
- Topic: AZdecrypt 1.19
- Replies: 9
- Views: 6161
Re: AZdecrypt
AZdecrypt 1.15 released: http://www.zodiackillersite.com/viewtopic.php?f=81&t=3198 AZdecrypt 1.15: Again a huge update and I will illustrate some examples of the new functionality during the next days. - beijinghouse made a special 8-gram system that is only 50% slower than 7-grams and uses only...
- May 21, 2019 19:41
- Forum: General
- Topic: Need faster Exponentiate
- Replies: 32
- Views: 3733
Re: Need faster Exponentiate
Thanks for your updated function, error table and plotter Richard. Much appreciated!
- May 20, 2019 14:13
- Forum: General
- Topic: Need faster Exponentiate
- Replies: 32
- Views: 3733
Re: Need faster Exponentiate
I'm happy that you find them useful. You can credit me as “Richard Freebasic”. I am interested in the particular n-gram techniques you are using for the solution of substitution ciphers. Do you have any references to papers or books that cover n-gram based solution. Okay, will do. My algorithm is m...
- May 19, 2019 17:43
- Forum: General
- Topic: Need faster Exponentiate
- Replies: 32
- Views: 3733
Re: Need faster Exponentiate
Richard wrote:and here is the faster single routine using the same approximations.
This one rocks. I will be using it for my program: viewtopic.php?f=8&t=23188
Do you want to be credited?
- May 19, 2019 13:41
- Forum: General
- Topic: Need faster Exponentiate
- Replies: 32
- Views: 3733
Re: Need faster Exponentiate
Thanks allot Richard!
- May 12, 2019 12:28
- Forum: General
- Topic: Need faster Exponentiate
- Replies: 32
- Views: 3733
Re: Need faster Exponentiate
Thanks paul doe, it is very fast but the approximation is not very good though it may be good enough for my needs. Indeed, the error is huge (and it'll only get worse the more you use them). Ahh, these kind of codes brings back so many fond memories ... ;) I saw this on YouTube a while ago. Of cour...