Jump to content
Wikipedia The Free Encyclopedia

Talk:Automatic vectorization

Page contents not supported in other languages.
Add topic
From Wikipedia, the free encyclopedia
Latest comment: 9 years ago by InternetArchiveBot in topic External links modified
This is the talk page for discussing improvements to the Automatic vectorization article.
This is not a forum for general discussion of the subject of the article.
Find sources:Google (books · news · scholar · free images · WPrefs) · FENS · JSTOR · TWL
This article is rated Start-class on Wikipedia's content assessment scale.
It is of interest to the following WikiProjects:
WikiProject icon Computer science Low‐importance
WikiProject icon This article is within the scope of WikiProject Computer science , a collaborative effort to improve the coverage of Computer science related articles on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.Computer scienceWikipedia:WikiProject Computer scienceTemplate:WikiProject Computer scienceComputer science
Low This article has been rated as Low-importance on the project's importance scale.
Things you can help WikiProject Computer science with:

[Untitled]

[edit ]
Latest comment: 10 years ago 1 comment1 person in discussion

The free() statements in the following example code engages in undefined behavior because the pointers received from malloc() have been altered. Segment faults, or other abnormal terminations, would be expected.

 int *a = malloc(128*sizeof(int));
 int *b = malloc(128*sizeof(int));
 // initialize b
 
 for (i = 0; i<128; i++, a++, b++)
 *a = *b + 5;
 // ... 
 // ...
 // ...
 free(b);
 free(a);

A very simple fix changes the following two lines:

 for (i = 0; i<128; i++ )
 a[i] = b[i] + 5;

YetAnotherAuthor (talk) 23:44, 28 February 2016 (UTC) Reply

[edit ]
Latest comment: 9 years ago 1 comment1 person in discussion

Hello fellow Wikipedians,

I have just modified one external link on Automatic vectorization. Please take a moment to review my edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit this simple FaQ for additional information. I made the following changes:

When you have finished reviewing my changes, please set the checked parameter below to true or failed to let others know (documentation at {{Sourcecheck }}).

This message was posted before February 2018. After February 2018, "External links modified" talk page sections are no longer generated or monitored by InternetArchiveBot. No special action is required regarding these talk page notices, other than regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check }} (last update: 5 June 2024).

  • If you have discovered URLs which were erroneously considered dead by the bot, you can report them with this tool.
  • If you found an error with any archives or the URLs themselves, you can fix them with this tool.

Cheers.—InternetArchiveBot (Report bug) 06:33, 22 October 2016 (UTC) Reply

AltStyle によって変換されたページ (->オリジナル) /